[arch-commits] Commit in unionfs-utils/trunk (PKGBUILD)

Jan de Groot jgc at archlinux.org
Fri Dec 5 20:40:21 UTC 2008


    Date: Friday, December 5, 2008 @ 15:40:20
  Author: jgc
Revision: 20566

nolibtool -> !libtool

Modified:
  unionfs-utils/trunk/PKGBUILD

----------+
 PKGBUILD |   15 +++++++--------
 1 file changed, 7 insertions(+), 8 deletions(-)

Modified: PKGBUILD
===================================================================
--- PKGBUILD	2008-12-05 20:38:46 UTC (rev 20565)
+++ PKGBUILD	2008-12-05 20:40:20 UTC (rev 20566)
@@ -7,16 +7,15 @@
 pkgrel=1
 pkgdesc="A stackable unification file system, which can merge the contents of several directories"
 url="http://www.unionfs.org/"
-makedepends=(autoconf automake libtool gcc)
 depends=(e2fsprogs)
+makedepends=(autoconf automake libtool gcc)
+options=('!libtool')
 source=(ftp://ftp.filesystems.org/pub/unionfs/unionfs-utils-0.x/snapshots/unionfs-utils-0.1-cvs${pkgver}.tar.gz)
 md5sums=('9a0e61a38c176386feb86d0b2c157afb')
-options=('nolibtool')
 
-build()
-{
-    cd $startdir/src/unionfs-utils-0.1-cvs${pkgver}
-    ./bootstrap && ./configure --prefix=/usr
-    make || return
-    make DESTDIR=$startdir/pkg/ install
+build() {
+  cd "${srcdir}/unionfs-utils-0.1-cvs${pkgver}"
+  ./bootstrap && ./configure --prefix=/usr || return 1
+  make || return
+  make DESTDIR="${pkgdir}" install || return 1
 }




More information about the arch-commits mailing list