diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /extra/libvorbis |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'extra/libvorbis')
-rw-r--r-- | extra/libvorbis/PKGBUILD | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/extra/libvorbis/PKGBUILD b/extra/libvorbis/PKGBUILD new file mode 100644 index 000000000..b144a90b1 --- /dev/null +++ b/extra/libvorbis/PKGBUILD @@ -0,0 +1,29 @@ +# $Id: PKGBUILD 102123 2010-12-06 01:49:44Z allan $ +# Maintainer: Tobias Kieslich <tobias@archlinux.org> +# Contributor: dorphell <dorphell@archlinux.org> +# Contributor: John Proctor <jproctor@prium.net> + +pkgname=libvorbis +pkgver=1.3.2 +pkgrel=1 +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=('c870b9bd5858a0ecb5275c14486d9554') + +build() { + cd ${srcdir}/${pkgname}-${pkgver} + #-march=i686 optimizes too much, strip it out + CFLAGS=${CFLAGS/-march=$CARCH} ./configure --prefix=/usr --disable-static + make +} + +package() { + cd ${srcdir}/${pkgname}-${pkgver} + make DESTDIR="${pkgdir}" install + install -Dm644 COPYING "${pkgdir}/usr/share/licenses/$pkgname/LICENSE" +} |