mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-01-17 23:34:07 +00:00
extra/libvorbis to 1.3.3-1
This commit is contained in:
parent
f89363d680
commit
642da4263d
1 changed files with 8 additions and 8 deletions
|
@ -2,33 +2,33 @@
|
|||
# Contributor: dorphell <dorphell@archlinux.org>
|
||||
# Contributor: John Proctor <jproctor@prium.net>
|
||||
|
||||
# ALARM: Kevin Mihelich <kevin@plugapps.com>
|
||||
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
||||
# - remove Arch's CFLAGS replacement, doesn't work with our flags
|
||||
|
||||
plugrel=1
|
||||
|
||||
pkgname=libvorbis
|
||||
pkgver=1.3.2
|
||||
pkgver=1.3.3
|
||||
pkgrel=1
|
||||
pkgdesc="Vorbis codec library"
|
||||
arch=('i686' 'x86_64')
|
||||
license=('custom')
|
||||
url="http://www.xiph.org/ogg/vorbis/"
|
||||
license=('BSD')
|
||||
url="http://www.xiph.org/vorbis/"
|
||||
depends=('libogg')
|
||||
options=('!libtool')
|
||||
source=(http://downloads.xiph.org/releases/vorbis/${pkgname}-${pkgver}.tar.gz)
|
||||
md5sums=('c870b9bd5858a0ecb5275c14486d9554')
|
||||
md5sums=('6b1a36f0d72332fae5130688e65efe1f')
|
||||
|
||||
build() {
|
||||
cd ${srcdir}/${pkgname}-${pkgver}
|
||||
cd "${srcdir}/${pkgname}-${pkgver}"
|
||||
#-march=i686 optimizes too much, strip it out
|
||||
#CFLAGS=${CFLAGS/-march=$CARCH} ./configure --prefix=/usr --disable-static
|
||||
./configure --prefix=/usr --disable-static
|
||||
LIBS+="-lm" ./configure --prefix=/usr --disable-static
|
||||
make
|
||||
}
|
||||
|
||||
package() {
|
||||
cd ${srcdir}/${pkgname}-${pkgver}
|
||||
cd "${srcdir}/${pkgname}-${pkgver}"
|
||||
make DESTDIR="${pkgdir}" install
|
||||
install -Dm644 COPYING "${pkgdir}/usr/share/licenses/$pkgname/LICENSE"
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue