diff options
Diffstat (limited to 'community/ifuse/PKGBUILD')
-rw-r--r-- | community/ifuse/PKGBUILD | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/community/ifuse/PKGBUILD b/community/ifuse/PKGBUILD index bcdf2b502..0cb379485 100644 --- a/community/ifuse/PKGBUILD +++ b/community/ifuse/PKGBUILD @@ -1,5 +1,6 @@ -# $Id: PKGBUILD 74618 2012-07-31 19:56:08Z ebelanger $ -# Maintainer: Thomas Dziedzic < gostrc at gmail > +# $Id: PKGBUILD 85492 2013-03-02 02:11:04Z cinelli $ +# Maintainer: Federico Cinelli <cinelli@aur.archlinux.org> +# Contributor: Thomas Dziedzic < gostrc at gmail > # Contributor: Gabriel Martinez < reitaka at gmail dot com > pkgname=ifuse @@ -10,17 +11,17 @@ url='http://libimobiledevice.org/' arch=('i686' 'x86_64') license=('LGPL2.1') depends=('libimobiledevice' 'fuse') -source=("http://www.libimobiledevice.org/downloads/${pkgname}-${pkgver}.tar.bz2") +source=("http://www.libimobiledevice.org/downloads/$pkgname-$pkgver.tar.bz2") md5sums=('4152526b2ac3c505cb41797d997be14d') build() { - cd "${pkgname}-${pkgver}" + cd "$pkgname-$pkgver" ./configure --prefix=/usr make } package() { - cd "${pkgname}-${pkgver}" - make DESTDIR="${pkgdir}" install + cd "$pkgname-$pkgver" + make DESTDIR="$pkgdir" install } |