blob: f4187b5e667997c0689de8f8275bd3491e385af6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# $Id: PKGBUILD 161869 2012-06-16 00:19:50Z ibiru $
# Maintainer : Ionut Biru <ibiru@archlinux.org>
# Contributor: Geoffroy Carrier <geoffroy.carrier@koon.fr>
pkgname=nilfs-utils
pkgver=2.1.2
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')
options=(!libtool)
source=(http://www.nilfs.org/download/$pkgname-$pkgver.tar.bz2)
md5sums=('9a16a5ca459e64a903eac9c2fd456802')
build() {
cd "$pkgname-$pkgver"
./configure --enable-libmount
make
}
package() {
cd "$pkgname-$pkgver"
make DESTDIR="$pkgdir" install LDCONFIG=/bin/true
}
|