Skip to content

Commit

Permalink
aur build default package qt6
Browse files Browse the repository at this point in the history
  • Loading branch information
olegantonyan committed Mar 15, 2024
1 parent 5b245d5 commit 6726e1c
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
5 changes: 3 additions & 2 deletions .github/aur/PKGBUILD_Qt5.erb
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,13 @@
pkgname=<%= pkgname %>
pkgver=<%= pkgver %>
pkgrel=<%= pkgrel %>
pkgdesc='Music player for the large local collections'
pkgdesc='Music player for the large local collections (Qt5 version)'
arch=('x86_64')
url="https://github.com/olegantonyan/mpz"
license=('GPL3')
depends=('qt5-multimedia' 'qt5-x11extras' 'hicolor-icon-theme' 'yaml-cpp' 'taglib')
provides=('<%= pkgname %>')
provides=('mpz')
conflicts=('mpz')
source=("$pkgname-$pkgver-$pkgrel.zip::<%= source %>")
sha256sums=('<%= sha256sums %>')

Expand Down
5 changes: 2 additions & 3 deletions .github/aur/PKGBUILD_Qt6.erb
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,12 @@
pkgname=<%= pkgname %>
pkgver=<%= pkgver %>
pkgrel=<%= pkgrel %>
pkgdesc='Music player for the large local collections (Qt6 version)'
pkgdesc='Music player for the large local collections'
arch=('x86_64')
url="https://github.com/olegantonyan/mpz"
license=('GPL3')
depends=('qt6-multimedia' 'hicolor-icon-theme' 'yaml-cpp' 'taglib')
provides=('mpz')
conflicts=('mpz')
provides=('<%= pkgname %>')
source=("$pkgname-$pkgver-$pkgrel.zip::<%= source %>")
sha256sums=('<%= sha256sums %>')

Expand Down
3 changes: 2 additions & 1 deletion .github/aur/SRCINFO_Qt5.erb
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ pkgbase = <%= pkgname %>
depends = hicolor-icon-theme
depends = yaml-cpp
depends = taglib
provides = <%= pkgname %>
provides = mpz
conflicts = mpz
source = <%= pkgname %>-<%= pkgver %>-<%= pkgrel %>.zip::<%= source %>
sha256sums = <%= sha256sums %>

Expand Down
3 changes: 1 addition & 2 deletions .github/aur/SRCINFO_Qt6.erb
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,7 @@ pkgbase = <%= pkgname %>
depends = hicolor-icon-theme
depends = yaml-cpp
depends = taglib
provides = mpz
conflicts = mpz
provides = <%= pkgname %>
source = <%= pkgname %>-<%= pkgver %>-<%= pkgrel %>.zip::<%= source %>
sha256sums = <%= sha256sums %>

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release-aur-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,15 @@ jobs:
- name: Run release script (Qt5)
env:
AUR_SSH_PRIVATE_KEY: ${{ secrets.AUR_SSH_PRIVATE_KEY }}
PKGNAME: mpz
PKGNAME: mpz-qt5
PKGBUILD: ./.github/aur/PKGBUILD_Qt5.erb
SRCINFO: ./.github/aur/SRCINFO_Qt5.erb
run: ./.github/release-aur-github-action.rb

- name: Run release script (Qt6)
- name: Run release script
env:
AUR_SSH_PRIVATE_KEY: ${{ secrets.AUR_SSH_PRIVATE_KEY }}
PKGNAME: mpz-qt6
PKGNAME: mpz
PKGBUILD: ./.github/aur/PKGBUILD_Qt6.erb
SRCINFO: ./.github/aur/SRCINFO_Qt6.erb
run: ./.github/release-aur-github-action.rb

0 comments on commit 6726e1c

Please sign in to comment.