35 lines
1.1 KiB
Bash
35 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"
|
|
#-----------------------------------------| DESCRIPTION |---------------------------------------
|
|
|
|
pkgname=nilfs-utils
|
|
pkgver=2.2.8
|
|
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')
|
|
|
|
md5sums=('feb4fbf72679cb6449935d720b161aec')
|
|
|
|
sha256sums=(5a29f8f59db03edf8dd1e68dfd80ff4713e0aa184cfa83a6326ac8af93d9bda6) # nilfs-utils-2.2.8.tar.bz2
|