diff options
Diffstat (limited to 'community/fuseiso/PKGBUILD')
-rw-r--r-- | community/fuseiso/PKGBUILD | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/community/fuseiso/PKGBUILD b/community/fuseiso/PKGBUILD new file mode 100644 index 000000000..39ee9bffc --- /dev/null +++ b/community/fuseiso/PKGBUILD @@ -0,0 +1,33 @@ +# $Id: PKGBUILD 57911 2011-11-04 11:59:27Z lcarlier $ +# Contributor: Shinlun Hsieh <yngwiexx@yahoo.com.tw> +# Contributor: Daniel J Griffiths <ghost1227@archlinux.us> + +pkgname=fuseiso +pkgver=20070708 +pkgrel=4 +pkgdesc="FUSE module to mount ISO filesystem images" +arch=('i686' 'x86_64') +url="http://sourceforge.net/projects/fuseiso/" +license=('GPL') +depends=('fuse' 'glib2' 'zlib') +makedepends=('pkgconfig') +source=("http://ubiz.ru/dm/${pkgname}-${pkgver}.tar.bz2" + 'fuseiso-20070708-largeiso.patch') +md5sums=('4bb50412b6d01f337565e28afddca3a5' + '5c4dce932aba735727221f4e1695f277') + +build() { + cd ${srcdir}/${pkgname}-${pkgver} + + # Fix for isos larger than 4Go https://bugzilla.redhat.com/show_bug.cgi?id=440436 + patch -p1 -i "${srcdir}/fuseiso-20070708-largeiso.patch" + + ./configure --prefix=/usr + make +} + +package() { + cd ${srcdir}/${pkgname}-${pkgver} + + make DESTDIR=${pkgdir} install +} |