38 lines
1.1 KiB
Bash
38 lines
1.1 KiB
Bash
#!/usr/bin/bash
|
|
# JOBoRun : Jwm OpenBox Obarun RUNit
|
|
# Maintainer : Joe Bo Run <joborun@disroot.org>
|
|
# PkgSource : url="https://gittea.disroot.org/joborun-pkg/jobcore/$pkgname"
|
|
# Website : https://pozol.eu
|
|
#-----------------------------------------| DESCRIPTION |---------------------------------------
|
|
|
|
pkgname=nilfs-utils
|
|
pkgver=2.2.9
|
|
pkgrel=02
|
|
pkgdesc="A log-structured file system supporting continuous snapshotting (userspace utils)"
|
|
arch=('x86_64')
|
|
url="http://nilfs.sourceforge.net/"
|
|
backup=('etc/nilfs_cleanerd.conf')
|
|
depends=('util-linux')
|
|
source=(http://nilfs.sourceforge.net/download/$pkgname-$pkgver.tar.bz2)
|
|
|
|
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
|
|
}
|
|
|
|
#---- license gpg-key sha256sums ----
|
|
|
|
license=('GPL2' 'LGPL2.1')
|
|
|
|
sha256sums=(5df63998c2084182c8c608a29b47b1771b825b4b5fa7916c12cca2fcb7577a97) # nilfs-utils-2.2.9.tar.bz2
|
|
|
|
# 45490630e4c1496e94f744f40cf47cc50f0d548374806a323d3d232d43424b32 nilfs-utils-2.2.9-02-x86_64.pkg.tar.xz
|
|
|
|
|