62 lines
1.8 KiB
Bash
62 lines
1.8 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=xfsprogs
|
|
pkgver=6.5.0
|
|
pkgrel=01
|
|
pkgdesc="XFS filesystem utilities w/o systemd"
|
|
# url="https://xfs.org"
|
|
url="https://xfs.wiki.kernel.org"
|
|
depends=('sh' 'util-linux-libs' 'device-mapper' 'libinih' 'liburcu')
|
|
optdepends=('icu: for xfs_scrub'
|
|
'python: for xfs_scrub_all script'
|
|
'smtp-forwarder: for xfs_scrub_fail script')
|
|
makedepends=(git
|
|
device-mapper
|
|
eudev
|
|
libinih
|
|
liburcu
|
|
automake
|
|
autoconf
|
|
gettext
|
|
icu)
|
|
options=('!makeflags')
|
|
#source=("git+https://git.kernel.org/pub/scm/fs/xfs/xfsprogs-dev.git#tag=v${pkgver}")
|
|
source=("git+https://git.kernel.org/pub/scm/fs/xfs/xfsprogs-dev.git?signed#tag=v${pkgver}")
|
|
|
|
build() {
|
|
cd ${pkgname}-dev
|
|
make configure
|
|
export OPTIMIZER="-march=${CARCH/_/-} -O1"
|
|
export DEBUG=-DNDEBUG
|
|
./configure --prefix=/usr --sbindir=/usr/bin --with-systemd-unit-dir=no
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd ${pkgname}-dev
|
|
make DIST_ROOT="${pkgdir}" PKG_ROOT_SBIN_DIR="/usr/bin" install install-dev
|
|
chown -R root "$pkgdir"
|
|
chgrp -R root "$pkgdir"
|
|
# add hack as we cannot set rootlibdir
|
|
mv "${pkgdir}"/lib/libhandle.so* "${pkgdir}/usr/lib/"
|
|
rm -rf "${pkgdir}/lib"
|
|
}
|
|
|
|
#---- arch license gpg-key & sha256sums ----
|
|
|
|
arch=(x86_64)
|
|
|
|
license=('LGPL')
|
|
|
|
validpgpkeys=(2B8185919E8D248981869DED20AE1692E13DDEE0 # Eric Sandeen <sandeen@sandeen.net>
|
|
4020459E58C1A52511F5399113F703E6C11CF6F0) # Carlos Maiolino <cem@kernel.org>
|
|
|
|
sha256sums=(SKIP)
|
|
|
|
## b1a5e213c61486c5fa5be6005ee319acb10da0e35e3fa848398c00d271331661 xfsprogs-6.5.0-01-x86_64.pkg.tar.lz
|
|
|