Add arm to pkgbuild + pkgbuild fixes (#126)

* add ARM support to PKGBUILD

* fixed various issues with the PKGBUILD files

- added checksum to fixed-release PKGBUILD
- added auto-updating version to git-PKGBUILD
- moved PKGBUILD to /build-scripts
- fixed typo in description
- fixed license fields

Co-authored-by: Erik Reider <35975961+ErikReider@users.noreply.github.com>
This commit is contained in:
Moritz Poldrack 2022-05-18 22:33:55 +02:00 committed by GitHub
parent e082c3cba2
commit 3d08d105eb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 53 additions and 42 deletions

View File

@ -1,35 +0,0 @@
# Maintainer: Erik Reider <erik.reider@protonmail.com>
pkgname=swaync-git
_ver="0.6.1"
pkgver="$_ver.r304.f0369e6"
pkgrel=1
pkgdesc="A simple notificaion daemon with a GTK panel for checking previous notifications like other DE's"
_pkgfoldername=SwayNotificationCenter
url="https://github.com/ErikReider/$_pkgfoldername"
arch=(x86_64)
license=(GPL)
depends=("gtk3>=3.22" "gtk-layer-shell>=0.1" "dbus" "glib2>=2.50" "gobject-introspection>=1.68" "libgee>=0.20" "json-glib>=1.0" "libhandy>=1.4.0")
conflicts=("swaync" "swaync-client")
provides=("swaync" "swaync-client")
makedepends=(vala meson git scdoc)
source=("git+$url")
sha256sums=('SKIP')
pkgver() {
cd $_pkgfoldername
printf "$_ver.r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
prepare() {
cd SwayNotificationCenter
git checkout main
}
build() {
arch-meson $_pkgfoldername build -Dscripting=true
ninja -C build
}
package() {
DESTDIR="$pkgdir" meson install -C build
}

View File

@ -2,23 +2,27 @@
pkgname=swaync
pkgver=0.6.1
pkgrel=1
pkgdesc="A simple notificaion daemon with a GTK panel for checking previous notifications like other DE's"
pkgdesc="A simple notificaion daemon with a GTK panel for checking previous notifications like other DEs"
_pkgfoldername=SwayNotificationCenter
url="https://github.com/ErikReider/$_pkgfoldername"
arch=(x86_64)
license=(GPL)
arch=(
'x86_64'
'aarch64' # ARM v8 64-bit
'armv7h' # ARM v7 hardfloat
)
license=(GPL3)
depends=("gtk3>=3.22" "gtk-layer-shell>=0.1" "dbus" "glib2>=2.50" "gobject-introspection>=1.68" "libgee>=0.20" "json-glib>=1.0" "libhandy>=1.4.0")
conflicts=("swaync" "swaync-client")
provides=("swaync" "swaync-client")
makedepends=(vala meson git scdoc)
source=("${_pkgfoldername}-${pkgver}.tar.gz::${url}/archive/v${pkgver}.tar.gz")
sha256sums=('SKIP')
sha256sums=('d762bb4fc723b6efc9f2fe5f1a1eea851fa73a8c5fcac9311fa437809cdf46d4')
build() {
arch-meson "${_pkgfoldername}-${pkgver}" build -Dscripting=true
ninja -C build
arch-meson "${_pkgfoldername}-${pkgver}" build -Dscripting=true
ninja -C build
}
package() {
DESTDIR="$pkgdir" meson install -C build
DESTDIR="$pkgdir" meson install -C build
}

View File

@ -0,0 +1,42 @@
# Maintainer: Erik Reider <erik.reider@protonmail.com>
pkgname=swaync-git
_pkgname=swaync
pkgver="0.6.1.r304.f0369e6"
pkgrel=1
pkgdesc="A simple notificaion daemon with a GTK panel for checking previous notifications like other DEs"
url="https://github.com/ErikReider/SwayNotificationCenter"
arch=(
'x86_64'
'aarch64' # ARM v8 64-bit
'armv7h' # ARM v7 hardfloat
)
license=('GPL3')
depends=("gtk3>=3.22" "gtk-layer-shell>=0.1" "dbus" "glib2>=2.50" "gobject-introspection>=1.68" "libgee>=0.20" "json-glib>=1.0" "libhandy>=1.4.0")
conflicts=("swaync" "swaync-client")
provides=("swaync" "swaync-client")
makedepends=(vala meson git scdoc)
source=("$_pkgname::git+$url")
sha256sums=('SKIP')
pkgver() {
cd $_pkgname
(
set -o pipefail
git describe --long 2>/dev/null | sed 's/\([^-]*-g\)/r\1/;s/-/./g' \
|| printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
)
}
prepare() {
cd $_pkgname
git checkout main
}
build() {
arch-meson $_pkgname build -Dscripting=true
ninja -C build
}
package() {
DESTDIR="$pkgdir" meson install -C build
}