2013-01-14 08:36:10 +00:00
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
2011-02-01 01:48:16 +00:00
|
|
|
# - original OPTIMIZER export does not play nice with our system
|
2018-05-28 12:24:25 +00:00
|
|
|
# - configure with --enable-lto=no
|
2021-11-24 04:42:45 +00:00
|
|
|
# - 32-bit cflags addition to fix FTBFS with liburcu
|
2011-02-01 01:48:16 +00:00
|
|
|
|
2023-01-15 22:29:50 +00:00
|
|
|
# Maintainer: Tobias Powalowski <tpowa@archlinux.org>
|
|
|
|
|
2011-02-01 01:48:16 +00:00
|
|
|
pkgname=xfsprogs
|
2024-04-18 13:06:35 +00:00
|
|
|
pkgver=6.7.0
|
2024-02-07 13:31:57 +00:00
|
|
|
pkgrel=1
|
2011-02-01 01:48:16 +00:00
|
|
|
pkgdesc="XFS filesystem utilities"
|
2017-11-27 09:09:43 +00:00
|
|
|
arch=('x86_64')
|
2024-04-18 13:06:35 +00:00
|
|
|
license=('GPL-2.0-only' 'LGPL-2.1-only')
|
2023-04-01 14:29:53 +00:00
|
|
|
url="https://xfs.wiki.kernel.org"
|
2022-12-22 13:38:41 +00:00
|
|
|
depends=('sh' 'util-linux-libs' 'device-mapper' 'libinih' 'liburcu')
|
|
|
|
optdepends=('icu: for xfs_scrub'
|
|
|
|
'python: for xfs_scrub_all script'
|
2020-08-18 13:50:23 +00:00
|
|
|
'smtp-forwarder: for xfs_scrub_fail script')
|
2022-12-22 13:38:41 +00:00
|
|
|
makedepends=('git' 'icu')
|
2013-10-30 14:07:32 +00:00
|
|
|
options=('!makeflags')
|
2023-01-15 22:29:50 +00:00
|
|
|
source=("git+https://git.kernel.org/pub/scm/fs/xfs/xfsprogs-dev.git?signed#tag=v${pkgver}")
|
2024-04-18 13:06:35 +00:00
|
|
|
b2sums=('810ffde66e8de47ce264406591ef6fd6f24b52ab44a0b7a58f7858c8eee442c9f33988f968940560ab5a455ceac7c9b2de1376f3fba816d19eec81f3e92d8529')
|
2023-01-15 22:29:50 +00:00
|
|
|
validpgpkeys=(
|
|
|
|
'2B8185919E8D248981869DED20AE1692E13DDEE0' # Eric Sandeen <sandeen@sandeen.net>
|
|
|
|
'4020459E58C1A52511F5399113F703E6C11CF6F0' # Carlos Maiolino <cem@kernel.org>
|
|
|
|
)
|
2011-02-01 01:48:16 +00:00
|
|
|
|
|
|
|
build() {
|
2019-12-10 00:34:56 +00:00
|
|
|
cd ${pkgname}-dev
|
2015-09-08 12:05:44 +00:00
|
|
|
make configure
|
2011-11-20 20:07:00 +00:00
|
|
|
#export OPTIMIZER="-march=${CARCH/_/-} -O1"
|
2011-02-01 01:48:16 +00:00
|
|
|
export OPTIMIZER="-O1"
|
|
|
|
export DEBUG=-DNDEBUG
|
2021-11-24 04:42:45 +00:00
|
|
|
[[ $CARCH != "aarch64" ]] && CFLAGS+=" -DUATOMIC_NO_LINK_ERROR"
|
2024-02-07 13:31:57 +00:00
|
|
|
./configure --prefix=/usr --sbindir=/usr/bin --libexecdir=/usr/lib --with-systemd-unit-dir=/usr/lib/systemd/system --enable-lto=no
|
2011-02-01 01:48:16 +00:00
|
|
|
make
|
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
2019-12-10 00:34:56 +00:00
|
|
|
cd ${pkgname}-dev
|
2013-05-24 12:24:25 +00:00
|
|
|
make DIST_ROOT="${pkgdir}" PKG_ROOT_SBIN_DIR="/usr/bin" install install-dev
|
2019-12-10 00:34:56 +00:00
|
|
|
chown -R root "$pkgdir"
|
|
|
|
chgrp -R root "$pkgdir"
|
2012-05-05 17:35:31 +00:00
|
|
|
# add hack as we cannot set rootlibdir
|
|
|
|
mv "${pkgdir}"/lib/libhandle.so* "${pkgdir}/usr/lib/"
|
|
|
|
rm -rf "${pkgdir}/lib"
|
2011-02-01 01:48:16 +00:00
|
|
|
}
|