diff options
author | Nicolas Reynolds <fauno@kiwwwi.com.ar> | 2011-06-21 11:27:08 -0300 |
---|---|---|
committer | Nicolas Reynolds <fauno@kiwwwi.com.ar> | 2011-06-21 11:27:08 -0300 |
commit | 840283e9012eff70d83361c5ae058c4fb855979e (patch) | |
tree | a0f93f9812348b55c9dfbf1cc6b81eba78caf6ee /community/iat | |
parent | 93c61adf5995517ceecb6308255ff7fb85d59fcb (diff) | |
parent | f02c28de0bbcb85e152fc19d0008805021fe1a33 (diff) |
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts:
community/ascii/PKGBUILD
extra/gnome-utils/PKGBUILD
extra/libmodplug/PKGBUILD
extra/mkvtoolnix/PKGBUILD
extra/rox/PKGBUILD
extra/totem/PKGBUILD
kde-unstable/calligra/PKGBUILD
multilib/lib32-gtk2/PKGBUILD
multilib/lib32-libcups/PKGBUILD
multilib/zsnes/PKGBUILD
testing/perl-compress-bzip2/PKGBUILD
Diffstat (limited to 'community/iat')
-rw-r--r-- | community/iat/PKGBUILD | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/community/iat/PKGBUILD b/community/iat/PKGBUILD index 4ca48ddc2..a49400169 100644 --- a/community/iat/PKGBUILD +++ b/community/iat/PKGBUILD @@ -1,22 +1,26 @@ -# $Id: PKGBUILD 4868 2009-11-01 21:39:07Z ibiru $ -# Maintainer: Biru Ionut <ionut@archlinux.ro> +# $Id: PKGBUILD 49702 2011-06-19 11:29:43Z andrea $ +# Maintainer: +# Contributor: Biru Ionut <ionut@archlinux.ro> # Contributor: Jeff Mickey <jeff@archlinux.org> pkgname=iat pkgver=0.1.7 -pkgrel=2 +pkgrel=3 pkgdesc="Detects many formats of cd-rom image files (BIN,MDF,PDI,CDI,NRG,B5I) and converts them to ISO-9660" arch=('i686' 'x86_64' 'mips64el') url="http://iat.berlios.de/" license=('GPL') depends=('glibc') -makedepends=() -source=(http://download.berlios.de/iat/$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 - make || return 1 + make +} + +package() { + cd "$srcdir/$pkgname-$pkgver" make DESTDIR="$pkgdir" install } -md5sums=('5e1ffd82000ea4c80ffb2d63ae55120c') |