diff options
author | Hakan Erduman <hakan@erduman.de> | 2021-12-28 18:00:32 +0100 |
---|---|---|
committer | dispatch <dispatch@listserv.local> | 2021-12-28 17:13:15 +0000 |
commit | 576759a5dfe6489afe620c48ea549881cee9f4db (patch) | |
tree | c7ee9015ad26e13c4874d7ccef5739d3db331365 | |
parent | a3cb1a1e4943e8f33daf06946f35f93874198736 (diff) | |
download | aports-patches/3847.tar.gz aports-patches/3847.tar.bz2 aports-patches/3847.tar.xz |
add: xfce4-hamster-pluginpatches/3847
-rw-r--r-- | testing/xfce4-hamster-plugin/APKBUILD | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/testing/xfce4-hamster-plugin/APKBUILD b/testing/xfce4-hamster-plugin/APKBUILD new file mode 100644 index 0000000000..47c15b9ccf --- /dev/null +++ b/testing/xfce4-hamster-plugin/APKBUILD @@ -0,0 +1,29 @@ +# Maintainer: Hakan Erduman <hakan@erduman.de> +pkgname=xfce4-hamster-plugin +pkgver=1.15 +pkgrel=0 +pkgdesc="A recreation of the gnome-shell hamster extension as a xfce4 panel plugin." +url="https://github.com/projecthamster/xfce4-hamster-plugin" +arch="all !mips !mips64" +license="GPL-2.0-or-later" +options="!check" # No test suite +makedepends="cmake libxfce4ui-dev libxfce4util-dev xfce4-panel-dev" +subpackages="$pkgname-lang" +source="$pkgname-$pkgver.tar.gz::https://github.com/projecthamster/xfce4-hamster-plugin/archive/refs/tags/v$pkgver.tar.gz" + +build() { + cmake \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DCMAKE_INSTALL_LIBDIR=lib \ + -DCMAKE_BUILD_TYPE=None \ + . + make +} + +package() { + make install LIBDIR=lib DESTDIR="$pkgdir" +} + +sha512sums=" +ba26bf96d2d344569f0e98a4da7b6a1617d3b9c047e90debc2c84f858318e2e5862c68195899790ae7eaba77ab75c514e25ffa6fb7bf47e3fc70c82c8087f58e xfce4-hamster-plugin-1.15.tar.gz +" |