diff options
author | Nicolas Reynolds <fauno@kiwwwi.com.ar> | 2011-12-30 10:44:01 -0300 |
---|---|---|
committer | Nicolas Reynolds <fauno@kiwwwi.com.ar> | 2011-12-30 10:44:01 -0300 |
commit | 0d8ecfa1948a782678aea98ce57638f0430de78b (patch) | |
tree | 8d126f200367e84337c6d0fa91cd749a1c7877b8 /core/nilfs-utils | |
parent | 8baf74afe0af3b4012ae438cfeea1bbea3f41375 (diff) | |
parent | 8a823402bd45dc875237a20f174ecbe64e1bae4d (diff) |
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts:
extra/desktop-file-utils/PKGBUILD
extra/libgphoto2/PKGBUILD
multilib-testing/lib32-glibc/PKGBUILD
testing/glibc/PKGBUILD
Diffstat (limited to 'core/nilfs-utils')
-rw-r--r-- | core/nilfs-utils/PKGBUILD | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/core/nilfs-utils/PKGBUILD b/core/nilfs-utils/PKGBUILD index 75f0f8f89..88ffd0291 100644 --- a/core/nilfs-utils/PKGBUILD +++ b/core/nilfs-utils/PKGBUILD @@ -1,26 +1,26 @@ -# $Id: PKGBUILD 122457 2011-05-04 07:52:42Z ibiru $ +# $Id: PKGBUILD 145721 2011-12-28 18:28:07Z ibiru $ # Maintainer : Ionut Biru <ibiru@archlinux.org> # Contributor: Geoffroy Carrier <geoffroy.carrier@koon.fr> pkgname=nilfs-utils -pkgver=2.0.23 -pkgrel=1 +pkgver=2.1.0 +pkgrel=2 pkgdesc="A log-structured file system supporting continuous snapshotting (userspace utils)" arch=('i686' 'x86_64' 'mips64el') url="http://www.nilfs.org/" license=('GPL2' 'LGPL2.1') backup=('etc/nilfs_cleanerd.conf') -depends=('util-linux-ng') +depends=('util-linux') options=(!libtool) -source=(http://www.nilfs.org/download/${pkgname}-${pkgver}.tar.bz2) -md5sums=('7f7e835d02e14642e8b7b32a36b7fab0') +source=(http://www.nilfs.org/download/$pkgname-$pkgver.tar.bz2) +md5sums=('738f7bee062051c14dcff444bb17ada7') build() { - cd "${srcdir}/${pkgname}-${pkgver}" - ./configure --libdir=/lib + cd "$srcdir/$pkgname-$pkgver" + ./configure --libdir=/lib --enable-libmount make } package() { - cd "${srcdir}/${pkgname}-${pkgver}" - make DESTDIR="${pkgdir}" install LDCONFIG=/bin/true + cd "$srcdir/$pkgname-$pkgver" + make DESTDIR="$pkgdir" install LDCONFIG=/bin/true } |