diff options
Diffstat (limited to 'core/nilfs-utils/PKGBUILD')
-rw-r--r-- | core/nilfs-utils/PKGBUILD | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/core/nilfs-utils/PKGBUILD b/core/nilfs-utils/PKGBUILD new file mode 100644 index 000000000..12571ea11 --- /dev/null +++ b/core/nilfs-utils/PKGBUILD @@ -0,0 +1,22 @@ +# $Id: PKGBUILD 107520 2011-01-26 13:39:05Z ibiru $ +# Maintainer : Ionut Biru <ibiru@archlinux.org> +# Contributor: Geoffroy Carrier <geoffroy.carrier@koon.fr> +pkgname=nilfs-utils +pkgver=2.0.21 +pkgrel=1 +pkgdesc="A log-structured file system supporting continuous snapshotting (userspace utils)" +arch=('i686' 'x86_64') +url="http://www.nilfs.org/" +license=('GPL2' 'LGPL2.1') +backup=('etc/nilfs_cleanerd.conf') +depends=('util-linux-ng') +options=(!libtool) +source=(http://www.nilfs.org/download/${pkgname}-${pkgver}.tar.bz2) +md5sums=('7f970f35950b429ac490df594c9d8fc1') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + ./configure --libdir=/lib + make + make DESTDIR="${pkgdir}" install LDCONFIG=/bin/true +} |