diff options
Diffstat (limited to 'community/mdf2iso/PKGBUILD')
-rw-r--r-- | community/mdf2iso/PKGBUILD | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/community/mdf2iso/PKGBUILD b/community/mdf2iso/PKGBUILD new file mode 100644 index 000000000..21370ed35 --- /dev/null +++ b/community/mdf2iso/PKGBUILD @@ -0,0 +1,29 @@ +# $Id: PKGBUILD 25104 2010-08-30 23:20:53Z lcarlier $ +# Contributor: Jeff Mickey <j@codemac.net> +# Contributer: Henrik Ronellenfitsch <henrik at searinox dot de> +# Maintainer: Daniel J Griffiths <ghost1227@archlinux.us> + +pkgname=mdf2iso +pkgver=0.3.0 +pkgrel=4 +pkgdesc="Converts Alcohol 120% .mdf files into .iso files" +arch=('i686' 'x86_64') +url="http://mdf2iso.berlios.de" +license=('GPL') +depends=('glibc') +source=(http://download.berlios.de/mdf2iso/${pkgname}-${pkgver}-src.tar.bz2 lfs.patch) +md5sums=('a190625318476a196930ac66acd8fd07' 'a7510b8bc36d468ace80df3ecf55a3a3') + +build() { + cd ${srcdir}/${pkgname} + + patch -p1 < ../lfs.patch + ./configure --prefix=/usr + make || return 1 +} + +package() { + cd ${srcdir}/${pkgname} + + make DESTDIR=${pkgdir} install +} |