mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-04 21:47:17 +08:00
2b06bdbc94
* PKGBUILD changes to fix build issues
29 lines
692 B
Bash
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
|
|
}
|