summaryrefslogtreecommitdiff
path: root/community/twolame/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/twolame/PKGBUILD')
-rw-r--r--community/twolame/PKGBUILD30
1 files changed, 30 insertions, 0 deletions
diff --git a/community/twolame/PKGBUILD b/community/twolame/PKGBUILD
new file mode 100644
index 000000000..85c5d7c71
--- /dev/null
+++ b/community/twolame/PKGBUILD
@@ -0,0 +1,30 @@
+# $Id: PKGBUILD 65632 2012-02-21 15:35:13Z giovanni $
+# Maintainer: Giovanni Scafora <giovanni@archlinux.org>
+# Contributor: farid abdelnour <farid at atelier-labs.org>
+# Contributor: Gustavo Alvarez <sl1pkn07 at gmail.org>
+
+pkgname=twolame
+pkgver=0.3.13
+pkgrel=6
+pkgdesc="An optimized MPEG Audio Layer 2 (MP2) encoder"
+arch=('i686' 'x86_64')
+url="http://www.twolame.org/"
+license=('LGPL')
+depends=('libsndfile')
+options=('!libtool')
+source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz")
+md5sums=('4113d8aa80194459b45b83d4dbde8ddb')
+
+build() {
+ cd "$srcdir/$pkgname-$pkgver"
+
+ ./configure --prefix=/usr \
+ --disable-static
+ make
+}
+
+package() {
+ cd "$srcdir/$pkgname-$pkgver"
+
+ make DESTDIR=${pkgdir} install
+}