mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 23:47:21 +08:00
34 lines
798 B
Bash
34 lines
798 B
Bash
# Maintainer: Neophytos Kolokotronis <tetris4@gmail.com>
|
|
# Contributors from Arch: Ray Rashif <schiv@archlinux.org>
|
|
# Ionut Biru <ibiru@archlinux.org>
|
|
# Hugo Doria <hugo@archlinux.org>
|
|
|
|
pkgname=lame
|
|
pkgver=3.99.5
|
|
pkgrel=1
|
|
pkgdesc="A high quality MPEG Audio Layer III (MP3) encoder"
|
|
arch=('i686' 'x86_64')
|
|
url="http://lame.sourceforge.net/"
|
|
depends=('ncurses')
|
|
makedepends=('nasm')
|
|
license=('LGPL')
|
|
options=('!libtool')
|
|
source=("http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz")
|
|
md5sums=('84835b313d4a8b68f5349816d33e07ce')
|
|
|
|
build() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
|
|
./configure --prefix=/usr \
|
|
--enable-nasm \
|
|
--enable-shared
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|
|
# vim:set ts=2 sw=2 et: |