2016-01-20 03:05:24 +08:00
|
|
|
# Contributions from Arch: https://projects.archlinux.org/svntogit/packages.git/tree/trunk?h=packages/lame
|
2010-05-20 12:03:20 +08:00
|
|
|
|
2010-03-14 23:48:48 +08:00
|
|
|
pkgname=lame
|
2012-08-29 15:31:09 +08:00
|
|
|
pkgver=3.99.5
|
2017-01-03 09:27:44 +08:00
|
|
|
pkgrel=3
|
2012-10-06 02:12:12 +08:00
|
|
|
pkgdesc="A high quality MPEG Audio Layer III (MP3) encoder"
|
2016-01-20 03:05:24 +08:00
|
|
|
arch=('x86_64')
|
2010-03-14 23:48:48 +08:00
|
|
|
url="http://lame.sourceforge.net/"
|
|
|
|
depends=('ncurses')
|
|
|
|
makedepends=('nasm')
|
|
|
|
license=('LGPL')
|
|
|
|
options=('!libtool')
|
2012-10-06 02:12:12 +08:00
|
|
|
source=("http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz")
|
2012-08-29 15:31:09 +08:00
|
|
|
md5sums=('84835b313d4a8b68f5349816d33e07ce')
|
2010-03-14 23:48:48 +08:00
|
|
|
|
|
|
|
build() {
|
2012-10-06 02:12:12 +08:00
|
|
|
cd "$srcdir/$pkgname-$pkgver"
|
2010-03-14 23:48:48 +08:00
|
|
|
|
|
|
|
./configure --prefix=/usr \
|
|
|
|
--enable-nasm \
|
|
|
|
--enable-shared
|
2012-08-29 15:31:09 +08:00
|
|
|
make
|
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
2012-10-06 02:12:12 +08:00
|
|
|
cd "$srcdir/$pkgname-$pkgver"
|
2012-08-29 15:31:09 +08:00
|
|
|
|
2012-10-06 02:12:12 +08:00
|
|
|
make DESTDIR="$pkgdir" install
|
2010-03-14 23:48:48 +08:00
|
|
|
}
|