mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
23 lines
663 B
Bash
23 lines
663 B
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
# Maintainer: Daniel J Griffiths <ghost1227@archlinux.us>
|
|
# Contributor: Shinlun Hsieh <yngwiexx@yahoo.com.tw>
|
|
|
|
pkgname=fuseiso
|
|
pkgver=20070708
|
|
pkgrel=1
|
|
pkgdesc="FUSE module to mount ISO filesystem images"
|
|
arch=('i686' 'x86_64')
|
|
url="http://fuse.sourceforge.net/wiki/index.php/FuseIso"
|
|
license=('GPL')
|
|
depends=('fuse' 'glib2' 'zlib')
|
|
makedepends=('pkgconfig')
|
|
source=(http://ubiz.ru/dm/${pkgname}-${pkgver}.tar.bz2)
|
|
md5sums=('4bb50412b6d01f337565e28afddca3a5')
|
|
|
|
build() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
./configure --prefix=/usr || return 1
|
|
make || return 1
|
|
make DESTDIR=${pkgdir} install || return 1
|
|
}
|
|
|