blob: 51578c420bfc205385a78506b797b1b3ff24ce5c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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
}
|