diff options
Diffstat (limited to 'abs/core-testing/aufs2-util/PKGBUILD')
-rw-r--r-- | abs/core-testing/aufs2-util/PKGBUILD | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/abs/core-testing/aufs2-util/PKGBUILD b/abs/core-testing/aufs2-util/PKGBUILD new file mode 100644 index 0000000..0690bba --- /dev/null +++ b/abs/core-testing/aufs2-util/PKGBUILD @@ -0,0 +1,25 @@ +# $Id: PKGBUILD 80416 2010-05-17 08:02:02Z tpowa $ +# Contributor: Paul Mattal <paul@mattal.com> +# Maintainer: Paul Mattal <pjmattal@elys.com> +pkgname=aufs2-util +pkgver=20100517 +pkgrel=1 +pkgdesc="Another Unionfs Implementation that supports NFS branches" +arch=('i686' 'x86_64') +url="http://aufs.sourceforge.net/" +license=('GPL2') +depends=('glibc') +makedepends=('aufs2>=2.6.34_20100517' 'kernel26-headers') +replaces=('aufs-utils') +source=("ftp://ftp.archlinux.org/other/${pkgname}/${pkgname}-${pkgver}.tar.gz") + +build() { + cd $srcdir/$pkgname-$pkgver + make || return 1 +} + +package() { + cd $srcdir/$pkgname-$pkgver + make DESTDIR=$pkgdir install || return 1 +} +md5sums=('1541729832ead247953b09dd5cc40883') |