diff options
Diffstat (limited to 'community/lsdvd/PKGBUILD')
-rw-r--r-- | community/lsdvd/PKGBUILD | 29 |
1 files changed, 17 insertions, 12 deletions
diff --git a/community/lsdvd/PKGBUILD b/community/lsdvd/PKGBUILD index 69fca75c9..0bb721b95 100644 --- a/community/lsdvd/PKGBUILD +++ b/community/lsdvd/PKGBUILD @@ -1,28 +1,33 @@ -# $Id: PKGBUILD 76873 2012-10-01 14:53:57Z bisson $ -# Maintainer: Aaron Griffin <aaron@archlinux.org> +# $Id: PKGBUILD 115655 2014-07-13 16:11:47Z jsteel $ +# Maintainer: Jonathan Steel <jsteel at aur.archlinux.org> +# Contributor: Aaron Griffin <aaron@archlinux.org> +# Contributor: Mathieu Clabaut <mathieu.clabaut@gmail.com> pkgname=lsdvd pkgver=0.16 -pkgrel=6 -pkgdesc="A C application for reading the contents of a DVD and printing the contents to your terminal" +pkgrel=7 +pkgdesc="Console application that displays the content of a DVD" arch=('i686' 'x86_64') url="http://sourceforge.net/projects/lsdvd/" -depends=('libdvdread') license=('GPL2') -#Special thanks to Mathieu Clabaut <mathieu.clabaut@gmail.com> for patches -source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz" - 'stdint_usage.patch') +depends=('libdvdread') +source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz + stdint_usage.patch) md5sums=('340e1abe5c5e5abf7ff8031e78f49ee7' '6cbcbfde873f894bd3c784f65141b2fc') build() { - cd "${srcdir}/${pkgname}-${pkgver}" - patch -Np1 -i "${srcdir}/stdint_usage.patch" + cd "$srcdir"/$pkgname-$pkgver + + patch -Np1 -i "$srcdir"/stdint_usage.patch + ./configure --prefix=/usr --mandir=/usr/share/man + make } package() { - cd "${srcdir}/${pkgname}-${pkgver}" - make DESTDIR="${pkgdir}" install + cd "$srcdir"/$pkgname-$pkgver + + make DESTDIR="$pkgdir"/ install } |