diff options
author | Omar Vega Ramos <ovruni@gnu.org.pe> | 2013-02-11 16:55:16 -0500 |
---|---|---|
committer | Omar Vega Ramos <ovruni@gnu.org.pe> | 2013-02-11 16:55:16 -0500 |
commit | 43d35bc1871d85dd4b236b9b7160a61b1d7b573a (patch) | |
tree | 35ae857b2b92957383b4a635dbd0a686189ef48f /pcr/libshout-idjc | |
parent | e8b14a6bbb147d5115fd59bd44b1c967211fdcbe (diff) | |
download | abslibre-43d35bc1871d85dd4b236b9b7160a61b1d7b573a.tar.gz abslibre-43d35bc1871d85dd4b236b9b7160a61b1d7b573a.tar.bz2 abslibre-43d35bc1871d85dd4b236b9b7160a61b1d7b573a.zip |
Adding idjc, jack-rack and libshout-idjc in pcr
Diffstat (limited to 'pcr/libshout-idjc')
-rw-r--r-- | pcr/libshout-idjc/PKGBUILD | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/pcr/libshout-idjc/PKGBUILD b/pcr/libshout-idjc/PKGBUILD new file mode 100644 index 000000000..51578c420 --- /dev/null +++ b/pcr/libshout-idjc/PKGBUILD @@ -0,0 +1,25 @@ +# Maintainer: fauno, based on the git version from +# Mantainer: M0Rf30 +pkgname=libshout-idjc +pkgver=2.3.0 +pkgrel=1 +pkgdesc="Libshout-idjc is libshout plus some extensions for IDJC." +arch=(i686 x86_64) +url="http://idjc.sourceforge.net/" +depends=('libvorbis' 'libtheora' 'speex') +options=('!libtool' '!emptydirs') +source=("http://downloads.sourceforge.net/project/idjc/${pkgname}/${pkgname}-${pkgver}.tar.gz") +license=('LGPL') +md5sums=('1b92ee05f42a957169a74a911cd94afc') + +build() { + cd "$srcdir/$pkgname-$pkgver/" + ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var + make LDFLAGS+=-lspeex +} + +package() { + cd "$srcdir/$pkgname-$pkgver/" + make DESTDIR="${pkgdir}" install +} + |