mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 17:47:13 +08:00
27 lines
721 B
Bash
27 lines
721 B
Bash
# $Id: PKGBUILD 70763 2010-02-28 21:21:39Z giovanni $
|
|
# Maintainer: Hugo Doria <hugo@archlinux.org>
|
|
# Contributor: Hugo Doria <hugo@archlinux.org>
|
|
|
|
pkgname=lame
|
|
pkgver=3.98.3
|
|
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=('c0d510525566c7f8ed5b4bf343cb3b6d')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
|
|
./configure --prefix=/usr \
|
|
--enable-nasm \
|
|
--enable-shared
|
|
make || return 1
|
|
make DESTDIR="${pkgdir}" install || return 1
|
|
}
|