diff options
Diffstat (limited to 'testing/aufs2-util')
-rw-r--r-- | testing/aufs2-util/PKGBUILD | 25 | ||||
-rwxr-xr-x | testing/aufs2-util/create-tarball.sh | 11 |
2 files changed, 36 insertions, 0 deletions
diff --git a/testing/aufs2-util/PKGBUILD b/testing/aufs2-util/PKGBUILD new file mode 100644 index 000000000..3d2e23fed --- /dev/null +++ b/testing/aufs2-util/PKGBUILD @@ -0,0 +1,25 @@ +# $Id: PKGBUILD 114820 2011-03-16 06:31:06Z tpowa $ +# Contributor: Paul Mattal <paul@mattal.com> +# Maintainer: Paul Mattal <pjmattal@elys.com> +pkgname=aufs2-util +pkgver=20110314 +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.38_20110314' 'kernel26-headers') +replaces=('aufs-utils') +source=("ftp://ftp.archlinux.org/other/${pkgname}/${pkgname}-${pkgver}.tar.gz") + +build() { + cd $srcdir/$pkgname-$pkgver + make +} + +package() { + cd $srcdir/$pkgname-$pkgver + make DESTDIR=$pkgdir install +} +md5sums=('bf0f9c86361e12a3181fb3891e57cd8d') diff --git a/testing/aufs2-util/create-tarball.sh b/testing/aufs2-util/create-tarball.sh new file mode 100755 index 000000000..361cbbc38 --- /dev/null +++ b/testing/aufs2-util/create-tarball.sh @@ -0,0 +1,11 @@ +#!/bin/sh +GITSNAPSHOT=20110314 +# aufs2 (no -xx) for the latest -rc version. +git clone http://git.c3sl.ufpr.br/pub/scm/aufs/aufs2-util.git aufs2-util.git +cd aufs2-util.git +#git checkout origin/aufs2${AUFS2VERSION} +git checkout origin/aufs2.1 +cd .. +rm -rf aufs2-util-${GITSNAPSHOT} +cp -a aufs2-util.git aufs2-util-${GITSNAPSHOT} +tar -czf aufs2-util-${GITSNAPSHOT}.tar.gz --exclude=.git aufs2-util-${GITSNAPSHOT} |