diff options
author | Nicolás Reynolds <fauno@endefensadelsl.org> | 2014-01-07 03:30:07 +0000 |
---|---|---|
committer | Nicolás Reynolds <fauno@endefensadelsl.org> | 2014-01-07 03:30:07 +0000 |
commit | bd5b8fe0fe2355ad0df744ed310d12b8a70c51f9 (patch) | |
tree | 193748868eafd7f5d1fb754757fa956bb3070ae6 /community/ponymix/PKGBUILD | |
parent | 3b88fa9d064e61705923ef42381b467bc8ecfd32 (diff) |
Tue Jan 7 03:27:41 UTC 2014
Diffstat (limited to 'community/ponymix/PKGBUILD')
-rw-r--r-- | community/ponymix/PKGBUILD | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/community/ponymix/PKGBUILD b/community/ponymix/PKGBUILD new file mode 100644 index 000000000..49f988710 --- /dev/null +++ b/community/ponymix/PKGBUILD @@ -0,0 +1,24 @@ +# Maintainer: Dave Reisner <d@falconindy.com> +# Maintainer: Jelle van der Waa <jelle@vdwaa.nl> + +pkgname=ponymix +pkgver=2 +pkgrel=2 +pkgdesc="CLI PulseAudio Volume Control" +arch=('i686' 'x86_64') +url="http://github.com/falconindy/ponymix" +license=('MIT') +depends=('pulseaudio' 'libnotify') +source=("http://code.falconindy.com/archive/ponymix/$pkgname-$pkgver.tar.xz"{,.sig}) +md5sums=('9874c22dbba2805c870ae663331ca4ca' + 'SKIP') + +build() { + make -C "$srcdir/$pkgname-$pkgver" +} + +package() { + make -C "$srcdir/$pkgname-$pkgver" DESTDIR="$pkgdir" install +} + +# vim: ft=sh syn=sh et |