core/lame/PKGBUILD
Phil Miller 2b06bdbc94 * renamed qtmod and qtmod-phonon to qt and phonon
* PKGBUILD changes to fix build issues
2010-05-20 04:03:20 +00:00

29 lines
692 B
Bash

# Maintainer: Phil Miller <philm@chakra-project.org>
# NOTE might break. restart the build
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() {
export MAKEFLAGS="-j1"
cd "${srcdir}/${pkgname}-${pkgver}"
./configure --prefix=/usr \
--enable-nasm \
--enable-shared
make || return 1
make DESTDIR="${pkgdir}" install || return 1
}