summaryrefslogtreecommitdiffstats
path: root/abs/core-testing/libogg/PKGBUILD
blob: b317c8b1c53fa9d7ed9ca8ea58be67545eaac593 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# $Id: PKGBUILD 356 2008-04-18 22:56:27Z aaron $
# Maintainer: dorphell <dorphell@archlinux.org>
# Contributor: John Proctor <jproctor@prium.net>

pkgname=libogg
pkgver=1.1.3
pkgrel=1
pkgdesc="Ogg bitstream and framing library"
pkgurl="http://www.xiph.org/ogg/vorbis/download"
depends=('glibc')
arch=('i686' 'x86_64')
source=(http://downloads.xiph.org/releases/ogg/$pkgname-$pkgver.tar.gz)
md5sums=('eaf7dc6ebbff30975de7527a80831585')

build() {
  cd $startdir/src/${pkgname}-${pkgver}
  ./configure --prefix=/usr
  make || return 1
  make DESTDIR=$startdir/pkg install
  find $startdir/pkg -name '*.la' -exec rm {} \;
}