diff options
author | Nicolás Reynolds <fauno@kiwwwi.com.ar> | 2012-10-02 13:15:07 -0300 |
---|---|---|
committer | Nicolás Reynolds <fauno@kiwwwi.com.ar> | 2012-10-02 13:15:07 -0300 |
commit | 399a563eb2c30475d66ced8203aff23d65e540e8 (patch) | |
tree | fc3d829608b2434293be837200a8267ca789342e /community/lsdvd/PKGBUILD | |
parent | 3aff11a8581ae7e5a8ccea02062cd92f873c44c5 (diff) | |
parent | 941550cbc215d608bd18439f99500b74fbb80f0d (diff) |
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts:
community/yagf/PKGBUILD
extra/antlr2/PKGBUILD
gnome-unstable/baobab/PKGBUILD
gnome-unstable/baobab/baobab.install
testing/iputils/PKGBUILD
testing/iputils/iputils.install
Diffstat (limited to 'community/lsdvd/PKGBUILD')
-rw-r--r-- | community/lsdvd/PKGBUILD | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/community/lsdvd/PKGBUILD b/community/lsdvd/PKGBUILD new file mode 100644 index 000000000..69fca75c9 --- /dev/null +++ b/community/lsdvd/PKGBUILD @@ -0,0 +1,28 @@ +# $Id: PKGBUILD 76873 2012-10-01 14:53:57Z bisson $ +# Maintainer: Aaron Griffin <aaron@archlinux.org> + +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" +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') +md5sums=('340e1abe5c5e5abf7ff8031e78f49ee7' + '6cbcbfde873f894bd3c784f65141b2fc') + +build() { + 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 +} |