diff options
author | A. Wilcox <awilcox@wilcox-tech.com> | 2018-10-19 18:57:57 +0000 |
---|---|---|
committer | A. Wilcox <awilcox@wilcox-tech.com> | 2018-10-19 18:57:57 +0000 |
commit | 615706519a4d1f25ed49eb9700107520446d66c4 (patch) | |
tree | 26958a658ee0e69e778e04a0a53e1186b2b8d6d3 /user/xfce4-pulseaudio-plugin/APKBUILD | |
parent | cc4a22b8d11e4019eabb255c64ee6c8f733cb76f (diff) | |
parent | fd2ae754a2c7e16e994e2aa15929b2bd1c6b52e1 (diff) | |
download | packages-615706519a4d1f25ed49eb9700107520446d66c4.tar.gz packages-615706519a4d1f25ed49eb9700107520446d66c4.tar.bz2 packages-615706519a4d1f25ed49eb9700107520446d66c4.tar.xz packages-615706519a4d1f25ed49eb9700107520446d66c4.zip |
Merge branch 'xfce4.plugins' into 'master'
A bunch of XFCE plugins
See merge request !82
Diffstat (limited to 'user/xfce4-pulseaudio-plugin/APKBUILD')
-rw-r--r-- | user/xfce4-pulseaudio-plugin/APKBUILD | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/user/xfce4-pulseaudio-plugin/APKBUILD b/user/xfce4-pulseaudio-plugin/APKBUILD new file mode 100644 index 000000000..8a1e6cb34 --- /dev/null +++ b/user/xfce4-pulseaudio-plugin/APKBUILD @@ -0,0 +1,38 @@ +# Contributor: Kiyoshi Aman <kiyoshi.aman+adelie@gmail.com> +# Maintainer: Kiyoshi Aman <kiyoshi.aman+adelie@gmail.com> +pkgname=xfce4-pulseaudio-plugin +pkgver=0.4.1 +pkgrel=0 +pkgdesc="Pulseaudio plugin for the XFCE panel" +url="https://xfce.org" +arch="all" +license="GPL-2.0+" +makedepends="intltool libxfce4ui-dev xfce4-panel-dev pulseaudio-dev + keybinder-3.0-dev libnotify-dev dbus-glib-dev" +subpackages="$pkgname-lang" +langdir="/usr/lib/locale" +source="http://archive.xfce.org/src/panel-plugins/xfce4-pulseaudio-plugin/0.4/xfce4-pulseaudio-plugin-$pkgver.tar.bz2" + +build() { + cd "$builddir" + ./configure \ + --build=$CBUILD \ + --host=$CHOST \ + --prefix=/usr \ + --sysconfdir=/etc \ + --mandir=/usr/share/man \ + --localstatedir=/var + make +} + +check() { + cd "$builddir" + make check +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} + +sha512sums="e7b778c78ede9ad62afaa379941ce03636a79dd000e40e748079d3e0f3c71f2e68e32cf85e527be4e1192074652714db4b7c5707b727066198c2ea43184a71cc xfce4-pulseaudio-plugin-0.4.1.tar.bz2" |