diff options
author | root <root@rshg054.dnsready.net> | 2013-07-19 01:10:32 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-07-19 01:10:32 -0700 |
commit | 8fbc0076a4827ddc6af92e0b9daa4c4c31450808 (patch) | |
tree | 03fd0e2921ebd53228d9a93e32ed3976b636cbea /community/vorbissimple/PKGBUILD | |
parent | e445a313723389ba9ee1fded025c567dae5b21ea (diff) |
Fri Jul 19 01:09:18 PDT 2013
Diffstat (limited to 'community/vorbissimple/PKGBUILD')
-rw-r--r-- | community/vorbissimple/PKGBUILD | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/community/vorbissimple/PKGBUILD b/community/vorbissimple/PKGBUILD new file mode 100644 index 000000000..53976371d --- /dev/null +++ b/community/vorbissimple/PKGBUILD @@ -0,0 +1,22 @@ +# $Id: PKGBUILD 65375 2012-02-21 02:27:15Z spupykin $ +# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> +# Contributor: William Rea <sillywilly@gmail.com> + +pkgname=vorbissimple +pkgver=0.0.2 +pkgrel=3 +pkgdesc="A Vorbis decoder" +arch=('i686' 'x86_64') +url="http://kamaelia.sourceforge.net" +license=('GPL') +options=('!libtool') +depends=('libvorbis') +source=(http://downloads.sourceforge.net/kamaelia/$pkgname-$pkgver.tar.gz) +md5sums=('332077b25a4c9547947ab0922361ffda') + +build() { + cd $srcdir/$pkgname-$pkgver/libvorbissimple + ./configure --prefix=/usr + make + make DESTDIR=$pkgdir install +} |