diff options
Diffstat (limited to 'user/xfce4-panel-profiles/APKBUILD')
-rw-r--r-- | user/xfce4-panel-profiles/APKBUILD | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/user/xfce4-panel-profiles/APKBUILD b/user/xfce4-panel-profiles/APKBUILD new file mode 100644 index 000000000..8719fc556 --- /dev/null +++ b/user/xfce4-panel-profiles/APKBUILD @@ -0,0 +1,33 @@ +# Contributor: Kiyoshi Aman <kiyoshi.aman+adelie@gmail.com> +# Maintainer: Kiyoshi Aman <kiyoshi.aman+adelie@gmail.com> +pkgname=xfce4-panel-profiles +pkgver=1.0.8 +pkgrel=0 +pkgdesc="Application for managing XFCE panel layouts" +url="https://xfce.org" +arch="noarch" +options="!check" # no tests +license="GPL-3.0+" +depends="python3" +makedepends="intltool which" +subpackages="$pkgname-doc $pkgname-lang" +source="http://archive.xfce.org/src/apps/xfce4-panel-profiles/1.0/xfce4-panel-profiles-$pkgver.tar.bz2" +sha512sums="2d7980a79250414cc4611ccf573c2a3ee5eb510cf3ef6c32035ba23197eee1fded2e158cb50714dd935070916b07b3f33db02570f3d46a598144b4a2d3979ff4 xfce4-panel-profiles-1.0.8.tar.bz2" + +build() { + cd "$builddir" + ./configure \ + --prefix=/usr + make +} + +check() { + cd "$builddir" + make check +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} + |