diff options
author | Taner Tas <taner76@gmail.com> | 2017-04-11 05:28:54 +0000 |
---|---|---|
committer | Leonardo Arena <rnalrd@alpinelinux.org> | 2017-04-13 08:10:38 +0000 |
commit | 040056b3d6672010583b414414b5ec55dc2769f1 (patch) | |
tree | 268df77eb07eee4cf1389a2ce5d2d13085b89df9 /testing/pnmixer | |
parent | 6b76fb9d3ca0e7153f2576f4cd39891cab4df28a (diff) | |
download | aports-040056b3d6672010583b414414b5ec55dc2769f1.tar.bz2 aports-040056b3d6672010583b414414b5ec55dc2769f1.tar.xz |
testing/pnmixer: new aport
https://github.com/nicklan/pnmixer
PNMixer is a simple mixer application designed to run in system tray.
Diffstat (limited to 'testing/pnmixer')
-rw-r--r-- | testing/pnmixer/APKBUILD | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/testing/pnmixer/APKBUILD b/testing/pnmixer/APKBUILD new file mode 100644 index 0000000000..e7bdd24085 --- /dev/null +++ b/testing/pnmixer/APKBUILD @@ -0,0 +1,28 @@ +# Maintainer: Taner Tas <taner76@gmail.com> +pkgname=pnmixer +pkgver=0.7.1_rc3 +pkgrel=0 +pkgdesc="PNMixer is a simple mixer application designed to run in system tray." +url="https://github.com/nicklan/pnmixer" +arch="all" +license="GPL" +makedepends="cmake gettext gtk+2.0-dev alsa-lib-dev libnotify-dev" +install="" +subpackages="$pkgname-doc $pkgname-lang" +source="${pkgname}-${pkgver}.tar.gz::https://github.com/nicklan/pnmixer/archive/v${pkgver/_/-}.tar.gz" +options="!check" +builddir="${srcdir}/${pkgname}-${pkgver/_/-}" +build() { + cd "$builddir" + cmake . \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DWITH_GTK3=OFF + make +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} +sha512sums="1c8317c2496bf5651511b2bee681369ab9ff268b7a9105ff82db253b783ef95de18e68faef12561b1542c9457b05dd243b6b7d8d16388f923e64f88dca536a62 pnmixer-0.7.1_rc3.tar.gz" |