diff options
author | Nicolas Reynolds <fauno@kiwwwi.com.ar> | 2011-12-01 11:08:57 -0300 |
---|---|---|
committer | Nicolas Reynolds <fauno@kiwwwi.com.ar> | 2011-12-01 11:08:57 -0300 |
commit | 1200fd46a32625f2ac4b035653cb49c22cce6426 (patch) | |
tree | 0723ee124b40e6e95200ca002f9ae81361ab7919 /community/iat/PKGBUILD | |
parent | 0d0d9e0930114504c15aa8174e2c7d1d2b7a6744 (diff) | |
parent | fd115d7057eb8243df6edfaf1ed440d6f3e70692 (diff) |
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts:
community/iat/PKGBUILD
community/libnsbmp/PKGBUILD
community/libnsgif/PKGBUILD
community/libopenraw/PKGBUILD
community/netsurf/PKGBUILD
core/bison/PKGBUILD
core/perl/PKGBUILD
extra/avahi/PKGBUILD
extra/mutt/PKGBUILD
extra/php/PKGBUILD
Diffstat (limited to 'community/iat/PKGBUILD')
-rw-r--r-- | community/iat/PKGBUILD | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/community/iat/PKGBUILD b/community/iat/PKGBUILD index a49400169..475ba9630 100644 --- a/community/iat/PKGBUILD +++ b/community/iat/PKGBUILD @@ -1,26 +1,29 @@ -# $Id: PKGBUILD 49702 2011-06-19 11:29:43Z andrea $ -# Maintainer: -# Contributor: Biru Ionut <ionut@archlinux.ro> +# $Id: PKGBUILD 59656 2011-11-29 08:40:05Z arodseth $ +# Maintainer: Alexander Rødseth +# Contributor: Biru Ionut <ionut@archlinux.ro> # Contributor: Jeff Mickey <jeff@archlinux.org> - pkgname=iat pkgver=0.1.7 -pkgrel=3 -pkgdesc="Detects many formats of cd-rom image files (BIN,MDF,PDI,CDI,NRG,B5I) and converts them to ISO-9660" +pkgrel=4 +pkgdesc="Detects and converts DVD/CD images from BIN/MDF/PDI/CDI/NRG/B5I to ISO-9660" arch=('i686' 'x86_64' 'mips64el') url="http://iat.berlios.de/" license=('GPL') depends=('glibc') -source=("http://download.berlios.de/${pkgname}/$pkgname-$pkgver.tar.bz2") +source=("http://download.berlios.de/$pkgname/$pkgname-$pkgver.tar.bz2") md5sums=('5e1ffd82000ea4c80ffb2d63ae55120c') build() { cd "$srcdir/$pkgname-$pkgver" - ./configure --prefix=/usr --includedir=/usr/include/$pkgname + + ./configure --prefix=/usr --includedir="/usr/include/$pkgname" make } package() { cd "$srcdir/$pkgname-$pkgver" + make DESTDIR="$pkgdir" install } + +# vim:set ts=2 sw=2 et: |