diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /extra/lsdvd/PKGBUILD |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'extra/lsdvd/PKGBUILD')
-rw-r--r-- | extra/lsdvd/PKGBUILD | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/extra/lsdvd/PKGBUILD b/extra/lsdvd/PKGBUILD new file mode 100644 index 000000000..939311c72 --- /dev/null +++ b/extra/lsdvd/PKGBUILD @@ -0,0 +1,23 @@ +# $Id: PKGBUILD 39761 2009-05-21 11:31:55Z jgc $ +# Maintainer: Aaron Griffin <aaron@archlinux.org> + +pkgname=lsdvd +pkgver=0.16 +pkgrel=4 +pkgdesc="lsdvd is a C application for reading the contents of a DVD and printing the contents to your terminal" +arch=(i686 x86_64) +url="http://untrepid.com/acidrip/lsdvd.html" +depends=('libdvdread>=4.1.3') +license=('GPL2') +#Special thanks to Mathieu Clabaut <mathieu.clabaut@gmail.com> for patches +source=(http://downloads.sourceforge.net/lsdvd/${pkgname}-${pkgver}.tar.gz + stdint_usage.patch) +md5sums=('340e1abe5c5e5abf7ff8031e78f49ee7' '6cbcbfde873f894bd3c784f65141b2fc') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + patch -Np1 -i "${srcdir}/stdint_usage.patch" || return 1 + ./configure --prefix=/usr --mandir=/usr/share/man || return 1 + make || return 1 + make DESTDIR="${pkgdir}" install || return 1 +} |