Date: Tuesday, December 27, 2022 @ 12:24:44
Author: felixonmars
Revision: 464890
archrelease: copy trunk to testing-x86_64
Added:
nilfs-utils/repos/testing-x86_64/
nilfs-utils/repos/testing-x86_64/PKGBUILD
(from rev 464889, nilfs-utils/trunk/PKGBUILD)
----------+
PKGBUILD | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
Copied: nilfs-utils/repos/testing-x86_64/PKGBUILD (from rev 464889,
nilfs-utils/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2022-12-27 12:24:44 UTC (rev 464890)
@@ -0,0 +1,26 @@
+# Maintainer: Dan McGee <[email protected]>
+# Contributor: Geoffroy Carrier <[email protected]>
+
+pkgname=nilfs-utils
+pkgver=2.2.9
+pkgrel=2
+pkgdesc="A log-structured file system supporting continuous snapshotting
(userspace utils)"
+arch=('x86_64')
+url="http://nilfs.sourceforge.net/"
+license=('GPL2' 'LGPL2.1')
+backup=('etc/nilfs_cleanerd.conf')
+depends=('util-linux')
+source=(http://nilfs.sourceforge.net/download/$pkgname-$pkgver.tar.bz2)
+sha256sums=('5df63998c2084182c8c608a29b47b1771b825b4b5fa7916c12cca2fcb7577a97')
+
+build() {
+ cd $pkgname-$pkgver
+ sed -i -e 's#root_sbindir=/sbin#root_sbindir=/usr/bin#' configure
+ ./configure --sbindir=/usr/bin --with-libmount
+ make
+}
+
+package() {
+ cd $pkgname-$pkgver
+ make DESTDIR="$pkgdir" sbindir=/usr/bin install LDCONFIG=/bin/true
+}