updated on Tue Jan 17 08:05:08 UTC 2012
[aur-mirror.git] / mediastreamer-plugin-msilbc / PKGBUILD
blob5ff3e0501caf6c7180e62f13b402079757d31c62
1 # This is an example PKGBUILD file. Use this as a start to creating your own,
2 # and remove these comments. For more information, see 'man PKGBUILD'.
3 # NOTE: Please fill out the license field for your package! If it is unknown,
4 # then please put 'unknown'.
6 # Maintainer: Your Name <youremail@domain.com>
7 pkgname=mediastreamer-plugin-msilbc
8 pkgver=2.0.3
9 pkgrel=1
10 pkgdesc="iLBC support for mediastreamer-based applications"
11 arch=('i686' 'x86_64')
12 url="http://www.linphone.org"
13 license=('GPL')
14 depends=('mediastreamer' 'ilbc')
15 source=(http://download.savannah.gnu.org/releases/linphone/plugins/sources/msilbc-$pkgver.tar.gz)
16 md5sums=('9c8740345dd8ee9732604a8f6a4329e6')
18 build() {
19   cd "$srcdir/msilbc-$pkgver"
20   ILBC_CFLAGS="-I/usr/include/ilbc" ILBC_LIBS="ilbc" \
21   ./configure --prefix=/usr --libexecdir=/usr/lib/mediastreamer/
22   make
25 check() {
26   cd "$srcdir/msilbc-$pkgver"
27   make -k check
30 package() {
31   cd "$srcdir/msilbc-$pkgver"
32   make DESTDIR="$pkgdir/" install
35 # vim:set ts=2 sw=2 et: