summaryrefslogtreecommitdiff
path: root/libre/lame-libre/PKGBUILD
blob: 205d81c1f3f40ad54c3309507c40bfa6385d5041 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# Maintainer:  Ionut Biru <ibiru@archlinux.org>
# Contributor: Hugo Doria <hugo@archlinux.org>
# Maintainer: Henry Jensen <hjensen@connochaetos.org>

pkgname=lame-libre
pkgver=3.98.4
pkgrel=3
pkgdesc="An MP3 encoder and graphical frame analyzer"
arch=('i686' 'x86_64')
url="http://lame.sourceforge.net/"
depends=('ncurses')
makedepends=('nasm')
replaces=('lame')
provides=("lame=${pkgver}")
conflicts=('lame')
license=('LGPL')
options=('!libtool' '!distcc')
source=(http://repo.parabolagnulinux.org/other/lame-3.98.4-libre.tar.gz)
md5sums=('761a8629378974163b98f0b1c91d13e1')

build() {
  cd "${srcdir}/lame-${pkgver}-libre"

  ./configure --prefix=/usr \
              --enable-nasm \
              --enable-shared --disable-frontend
  make
  make DESTDIR="${pkgdir}" install
  rm -rf ${pkgdir}/usr/share/man
}