mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-01-17 23:34:07 +00:00
21 lines
557 B
Bash
21 lines
557 B
Bash
|
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
||
|
# Contributor: William Rea <sillywilly@gmail.com>
|
||
|
pkgname=vorbissimple
|
||
|
pkgver=0.0.2
|
||
|
pkgrel=1
|
||
|
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 $startdir/src/$pkgname-$pkgver/libvorbissimple
|
||
|
./configure --prefix=/usr
|
||
|
make || return 1
|
||
|
make DESTDIR=$startdir/pkg install
|
||
|
}
|