summaryrefslogtreecommitdiff
path: root/community/twolame/PKGBUILD
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2012-02-22 23:15:20 +0000
committerroot <root@rshg054.dnsready.net>2012-02-22 23:15:20 +0000
commit1d9fb21dff6df1679e536ab672edcbbdb4cf3a15 (patch)
tree803d7c2e3ac59d0ba8ac74c1b2a6dc6167937631 /community/twolame/PKGBUILD
parent1f55cedf5ea357497d2a98eb2be78d8dab4a9665 (diff)
Wed Feb 22 23:15:20 UTC 2012
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
+}