Date: Thursday, June 21, 2018 @ 08:42:07 Author: alucryd Revision: 327401
upgpkg: lame 3.100-2 Modified: lame/trunk/PKGBUILD ----------+ PKGBUILD | 29 ++++++++++++++++------------- 1 file changed, 16 insertions(+), 13 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2018-06-21 08:20:58 UTC (rev 327400) +++ PKGBUILD 2018-06-21 08:42:07 UTC (rev 327401) @@ -1,31 +1,34 @@ # $Id$ -# Maintainer: Ray Rashif <[email protected]> -# Contributor: Ionut Biru <[email protected]> +# Maintainer: Maxime Gauduin <[email protected]> +# Contributor: Ray Rashif <[email protected]> +# Contributor: Ionut Biru <[email protected]> # Contributor: Hugo Doria <[email protected]> pkgname=lame pkgver=3.100 -pkgrel=1 -pkgdesc="A high quality MPEG Audio Layer III (MP3) encoder" +pkgrel=2 +pkgdesc='A high quality MPEG Audio Layer III (MP3) encoder' arch=('x86_64') -url="http://lame.sourceforge.net/" +url='http://lame.sourceforge.net/' depends=('ncurses') makedepends=('nasm') license=('LGPL') -source=("http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz") -md5sums=('83e260acbe4389b54fe08e0bdbf7cddb') +source=("https://downloads.sourceforge.net/lame/lame-${pkgver}.tar.gz") +sha256sums=('ddfe36cab873794038ae2c1210557ad34857a4b6bdc515785d1da9e175b1da1e') build() { - cd $pkgname-$pkgver + cd lame-${pkgver} - ./configure --prefix=/usr \ - --enable-nasm \ - --enable-shared + ./configure \ + --prefix='/usr' \ + --enable-nasm \ + --enable-shared make } package() { - cd $pkgname-$pkgver + cd lame-${pkgver} - make DESTDIR="$pkgdir" install + make DESTDIR="${pkgdir}" install } +# vim: ts=2 sw=2 et:
