mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
25 lines
720 B
Bash
25 lines
720 B
Bash
|
# $Id: PKGBUILD 41362 2009-06-03 14:15:24Z hugo $
|
||
|
# Maintainer: Hugo Doria <hugo@archlinux.org>
|
||
|
# Contributor: Hugo Doria <hugo@archlinux.org>
|
||
|
|
||
|
pkgname=lame
|
||
|
pkgver=3.98.2
|
||
|
pkgrel=2
|
||
|
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}-398-2.tar.gz \
|
||
|
shared-frontend.patch)
|
||
|
md5sums=('719dae0ee675d0c16e0e89952930ed35' 'e7fc0e6d82dd35a01411be96fc8effab')
|
||
|
|
||
|
build() {
|
||
|
cd ${srcdir}/${pkgname}-398-2
|
||
|
./configure --prefix=/usr --enable-nasm --enable-shared
|
||
|
make || return 1
|
||
|
make DESTDIR=${pkgdir} install
|
||
|
}
|