summaryrefslogtreecommitdiff
path: root/libre/lame-libre
diff options
context:
space:
mode:
authorNicolás Reynolds <fauno@kiwwwi.com.ar>2012-04-11 10:57:18 -0300
committerNicolás Reynolds <fauno@kiwwwi.com.ar>2012-04-11 10:57:18 -0300
commitc07ca5cb71d277e9f2fd5c7b94cf8a0021bdfab5 (patch)
treed9d528762b726855cc356781c89abb1768c8be28 /libre/lame-libre
parentece2137c9569ec806aacf3740df98c399a51b21a (diff)
parent8119da2eaadf53531cad2aed70981ed4606340d6 (diff)
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts: community-testing/sword/PKGBUILD community/freedroidrpg/PKGBUILD community/pgadmin3/PKGBUILD libre/lame-libre/PKGBUILD testing/dbus-core/PKGBUILD testing/libwebkit/PKGBUILD testing/tracker/PKGBUILD testing/udev/0001-split-usr-always-read-config-files-from-lib-udev.patch testing/udev/0002-reinstate-TIMEOUT-handling.patch testing/udev/PKGBUILD
Diffstat (limited to 'libre/lame-libre')
-rw-r--r--libre/lame-libre/PKGBUILD31
1 files changed, 21 insertions, 10 deletions
diff --git a/libre/lame-libre/PKGBUILD b/libre/lame-libre/PKGBUILD
index 66d50a1bf..29e069bbf 100644
--- a/libre/lame-libre/PKGBUILD
+++ b/libre/lame-libre/PKGBUILD
@@ -1,11 +1,15 @@
-# Maintainer: Ionut Biru <ibiru@archlinux.org>
+# $Id: PKGBUILD 151867 2012-03-03 15:53:13Z schiv $
+# Maintainer: Ray Rashif <schiv@archlinux.org>
+# Contributor: Ionut Biru <ibiru@archlinux.org>
# Contributor: Hugo Doria <hugo@archlinux.org>
# Maintainer: Henry Jensen <hjensen@connochaetos.org>
+# Contributor (Parabola): André Silva <andre.paulista@adinet.com.uy>
+_pkgname=lame
pkgname=lame-libre
-pkgver=3.98.4
-pkgrel=3
-pkgdesc="An MP3 encoder and graphical frame analyzer"
+pkgver=3.99.5
+pkgrel=1
+pkgdesc="A high quality MPEG Audio Layer III (MP3) encoder"
arch=('i686' 'x86_64' 'mips64el')
url="http://lame.sourceforge.net/"
depends=('ncurses')
@@ -14,17 +18,24 @@ replaces=('lame')
provides=("lame=${pkgver}")
conflicts=('lame')
license=('LGPL')
-options=('!libtool' '!distcc')
-source=(http://repo.parabolagnulinux.org/other/lame-3.98.4-libre.tar.gz)
-md5sums=('761a8629378974163b98f0b1c91d13e1')
+options=('!libtool')
+source=("http://downloads.sourceforge.net/$_pkgname/$_pkgname-$pkgver.tar.gz")
+md5sums=('84835b313d4a8b68f5349816d33e07ce')
build() {
- cd "${srcdir}/lame-${pkgver}-libre"
+ cd "$srcdir/$_pkgname-$pkgver"
./configure --prefix=/usr \
--enable-nasm \
- --enable-shared --disable-frontend
+ --enable-shared
make
- make DESTDIR="${pkgdir}" install
+}
+
+package() {
+ cd "$srcdir/$_pkgname-$pkgver"
+
+ make DESTDIR="$pkgdir" install
rm -rf ${pkgdir}/usr/share/man
}
+
+# vim:set ts=2 sw=2 et: