summaryrefslogtreecommitdiff
path: root/libre/lame-libre/PKGBUILD
diff options
context:
space:
mode:
authorNicolás Reynolds <apoyosis@correo.inta.gob.ar>2011-09-06 15:07:24 -0300
committerNicolás Reynolds <apoyosis@correo.inta.gob.ar>2011-09-06 15:07:24 -0300
commitcbdc1be962cc674c1745435ded78ff1cd22e103f (patch)
treead026d56406ab92f612cbd18e8e21d40b67af4b1 /libre/lame-libre/PKGBUILD
parentd0e3b0478991169741d0d6bc1a5b7b880c48ff94 (diff)
libre/lame-libre-3.98.4-3
Diffstat (limited to 'libre/lame-libre/PKGBUILD')
-rw-r--r--libre/lame-libre/PKGBUILD30
1 files changed, 30 insertions, 0 deletions
diff --git a/libre/lame-libre/PKGBUILD b/libre/lame-libre/PKGBUILD
new file mode 100644
index 000000000..205d81c1f
--- /dev/null
+++ b/libre/lame-libre/PKGBUILD
@@ -0,0 +1,30 @@
+# Maintainer: Ionut Biru <ibiru@archlinux.org>
+# Contributor: Hugo Doria <hugo@archlinux.org>
+# Maintainer: Henry Jensen <hjensen@connochaetos.org>
+
+pkgname=lame-libre
+pkgver=3.98.4
+pkgrel=3
+pkgdesc="An MP3 encoder and graphical frame analyzer"
+arch=('i686' 'x86_64')
+url="http://lame.sourceforge.net/"
+depends=('ncurses')
+makedepends=('nasm')
+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')
+
+build() {
+ cd "${srcdir}/lame-${pkgver}-libre"
+
+ ./configure --prefix=/usr \
+ --enable-nasm \
+ --enable-shared --disable-frontend
+ make
+ make DESTDIR="${pkgdir}" install
+ rm -rf ${pkgdir}/usr/share/man
+}