core/libvorbis/PKGBUILD
2012-08-29 13:41:07 +00:00

30 lines
776 B
Bash

#
# Platform Packages for Chakra, part of chakra-project.org
#
# maintainer abveritas@chakra-project.org
pkgname=libvorbis
pkgver=1.3.3
pkgrel=5
pkgdesc="Vorbis codec library"
arch=('i686' 'x86_64')
license=('custom')
url="http://www.xiph.org/ogg/vorbis/"
depends=('libogg')
options=('!libtool')
source=(http://downloads.xiph.org/releases/vorbis/${pkgname}-${pkgver}.tar.gz)
md5sums=('6b1a36f0d72332fae5130688e65efe1f')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
#-march=i686 optimizes too much, strip it out
CFLAGS=${CFLAGS/-march=$CARCH} LIBS+="-lm" ./configure --prefix=/usr --disable-static
make
}
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
make DESTDIR="${pkgdir}" install
install -Dm644 COPYING "${pkgdir}/usr/share/licenses/$pkgname/LICENSE"
}