diff options
Diffstat (limited to 'extra/lame/PKGBUILD')
-rw-r--r-- | extra/lame/PKGBUILD | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/extra/lame/PKGBUILD b/extra/lame/PKGBUILD new file mode 100644 index 000000000..b66bb7f76 --- /dev/null +++ b/extra/lame/PKGBUILD @@ -0,0 +1,26 @@ +# $Id: PKGBUILD 80636 2010-05-20 16:06:46Z ibiru $ +# Maintainer: Ionut Biru <ibiru@archlinux.org> +# Contributor: Hugo Doria <hugo@archlinux.org> + +pkgname=lame +pkgver=3.98.4 +pkgrel=1 +pkgdesc="An MP3 encoder and graphical frame analyzer" +arch=('i686' 'x86_64') +url="http://lame.sourceforge.net/" +depends=('ncurses') +makedepends=('nasm') +license=('LGPL') +options=('!libtool') +source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.gz) +md5sums=('8e9866ad6b570c6c95c8cba48060473f') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + + ./configure --prefix=/usr \ + --enable-nasm \ + --enable-shared + make || return 1 + make DESTDIR="${pkgdir}" install || return 1 +} |