diff options
author | root <root@rshg054.dnsready.net> | 2013-07-19 01:10:32 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-07-19 01:10:32 -0700 |
commit | 8fbc0076a4827ddc6af92e0b9daa4c4c31450808 (patch) | |
tree | 03fd0e2921ebd53228d9a93e32ed3976b636cbea /community/mdf2iso/PKGBUILD | |
parent | e445a313723389ba9ee1fded025c567dae5b21ea (diff) |
Fri Jul 19 01:09:18 PDT 2013
Diffstat (limited to 'community/mdf2iso/PKGBUILD')
-rw-r--r-- | community/mdf2iso/PKGBUILD | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/community/mdf2iso/PKGBUILD b/community/mdf2iso/PKGBUILD new file mode 100644 index 000000000..b58c51413 --- /dev/null +++ b/community/mdf2iso/PKGBUILD @@ -0,0 +1,33 @@ +# $Id: PKGBUILD 64842 2012-02-18 17:37:56Z lcarlier $ +# Contributor: Jeff Mickey <j@codemac.net> +# Contributor: Henrik Ronellenfitsch <henrik at searinox dot de> +# Maintainer: Daniel J Griffiths <ghost1227@archlinux.us> + +pkgname=mdf2iso +pkgver=0.3.0 +pkgrel=5 +pkgdesc="Converts Alcohol 120% .mdf files to .iso files" +arch=('x86_64' 'i686') +url="http://mdf2iso.berlios.de/" +license=('GPL') +depends=('glibc') +source=("http://download.berlios.de/mdf2iso/$pkgname-$pkgver-src.tar.bz2" + "lfs.patch") +sha256sums=('7b6622c58bc6a5111eba719d2b55cdfab54cbb26f3aea98b7e5db0eb0062be84' + 'a15878b4b6c3e9484fbf8685220e482359cabc4d8039ffaf2a581175c381677d') + +build() { + cd "$srcdir/$pkgname" + + patch -p1 < ../lfs.patch + ./configure --prefix=/usr + make +} + +package() { + cd "$srcdir/$pkgname" + + make DESTDIR="$pkgdir" install +} + +# vim:set ts=2 sw=2 et: |