summaryrefslogtreecommitdiff
path: root/community/fuseiso/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/fuseiso/PKGBUILD')
-rw-r--r--community/fuseiso/PKGBUILD25
1 files changed, 15 insertions, 10 deletions
diff --git a/community/fuseiso/PKGBUILD b/community/fuseiso/PKGBUILD
index 06446b12a..f6865cc0c 100644
--- a/community/fuseiso/PKGBUILD
+++ b/community/fuseiso/PKGBUILD
@@ -1,28 +1,33 @@
-# $Id: PKGBUILD 22459 2010-07-21 20:26:36Z lcarlier $
+# $Id: PKGBUILD 54617 2011-08-22 06:10:07Z lcarlier $
# Contributor: Shinlun Hsieh <yngwiexx@yahoo.com.tw>
-# Maintainer: Daniel J Griffiths <ghost1227@archlinux.us>
+# Contributor: Daniel J Griffiths <ghost1227@archlinux.us>
pkgname=fuseiso
pkgver=20070708
-pkgrel=2
+pkgrel=3
pkgdesc="FUSE module to mount ISO filesystem images"
arch=('i686' 'x86_64' 'mips64el')
url="http://sourceforge.net/projects/fuseiso/"
license=('GPL')
depends=('fuse' 'glib2' 'zlib')
makedepends=('pkgconfig')
-source=(http://ubiz.ru/dm/${pkgname}-${pkgver}.tar.bz2)
-md5sums=('4bb50412b6d01f337565e28afddca3a5')
+source=("http://ubiz.ru/dm/${pkgname}-${pkgver}.tar.bz2"
+ 'fuseiso-20070708-largeiso.patch')
+md5sums=('4bb50412b6d01f337565e28afddca3a5'
+ '5c4dce932aba735727221f4e1695f277')
build() {
- cd ${srcdir}/${pkgname}-${pkgver}
+ cd ${srcdir}/${pkgname}-${pkgver}
- ./configure --prefix=/usr
- make
+ # 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}
+ cd ${srcdir}/${pkgname}-${pkgver}
- make DESTDIR=${pkgdir} install
+ make DESTDIR=${pkgdir} install
}