mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
19 lines
579 B
Bash
19 lines
579 B
Bash
|
# Contributor: Geoffroy Carrier <geoffroy.carrier@koon.fr>
|
||
|
pkgname=nilfs-utils
|
||
|
pkgver=2.0.14
|
||
|
pkgrel=1
|
||
|
pkgdesc="A log-structured file system supporting continuous snapshotting (userpace utils)"
|
||
|
arch=('i686' 'x86_64')
|
||
|
url="http://www.nilfs.org/"
|
||
|
license=('GPL2')
|
||
|
depends=('e2fsprogs')
|
||
|
options=(!libtool)
|
||
|
source=(http://www.nilfs.org/download/$pkgname-$pkgver.tar.bz2)
|
||
|
build() {
|
||
|
cd "$srcdir/$pkgname-$pkgver"
|
||
|
./configure --libdir=/lib || return 1
|
||
|
make || return 1
|
||
|
make DESTDIR="$pkgdir" install LDCONFIG=/bin/true || return 1
|
||
|
}
|
||
|
md5sums=('60a847f496a96ef67feb686b741f3569')
|