mirror of
https://github.com/ErikReider/SwayNotificationCenter.git
synced 2024-11-25 06:27:08 +03:00
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:
parent
e082c3cba2
commit
3d08d105eb
35
PKGBUILD-git
35
PKGBUILD-git
@ -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
|
||||
}
|
@ -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
|
||||
}
|
42
build-scripts/PKGBUILD-git
Normal file
42
build-scripts/PKGBUILD-git
Normal 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
|
||||
}
|
Loading…
Reference in New Issue
Block a user