PKGBUILDs/core/xfsprogs/PKGBUILD

68 lines
2.1 KiB
Bash
Raw Permalink Normal View History

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
2025-04-17 18:29:21 +00:00
pkgver=6.14.0
2024-07-26 10:29:37 +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-09-06 10:28:39 +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"
2024-09-06 10:28:39 +00:00
depends=(
device-mapper
libedit
libinih
liburcu
sh
util-linux-libs
)
optdepends=(
'icu: for xfs_scrub'
'python: for xfs_scrub_all script'
'smtp-forwarder: for xfs_scrub_fail script'
)
makedepends=(
git
icu
)
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}")
2025-04-17 18:29:21 +00:00
b2sums=('808a1bd007b601b319874b56959647354cec5da0e3fc26f019c9bf536b1f5b8fe7a9766bfa3bcdc3e6ab028ab7b271748bd627d2f93d96d9a6874b809882ee3e')
2023-01-15 22:29:50 +00:00
validpgpkeys=(
2024-10-22 18:10:38 +00:00
'AE1B2A9562721A6FC4307C1F46A7EA18AC33E108' # Andrey Albershteyn <aalbersh@redhat.com>
2023-01-15 22:29:50 +00:00
'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
2025-02-20 11:43:10 +00:00
# Inject libicuuc to fix link error:
# /usr/bin/ld: /tmp/ccRHx17I.ltrans1.ltrans.o: undefined reference to symbol 'uiter_setString_76'
# /usr/bin/ld: /usr/lib64/libicuuc.so.76: error adding symbols: DSO missing from command line
sed -r -i 's/\$\(LIBICU_LIBS\)/\0 -licuuc/' scrub/Makefile
2021-11-24 04:42:45 +00:00
[[ $CARCH != "aarch64" ]] && CFLAGS+=" -DUATOMIC_NO_LINK_ERROR"
2024-08-29 13:26:30 +00:00
# Package is honoring CFLAGS; No need to use OPTIMIZER anymore.
# However, we have to provide an empty value to avoid default
# flags.
export OPTIMIZER=" "
./configure --prefix=/usr --sbindir=/usr/bin --libexecdir=/usr/lib \
--with-systemd-unit-dir=/usr/lib/systemd/system \
--localstatedir=/var --enable-editline --enable-lto=no
2011-02-01 01:48:16 +00:00
make
}
package() {
2019-12-10 00:34:56 +00:00
cd ${pkgname}-dev
2024-08-29 13:26:30 +00:00
make PKG_USER=root PKG_GROUP=root DIST_ROOT="${pkgdir}" \
PKG_ROOT_SBIN_DIR="/usr/bin" install install-dev
2011-02-01 01:48:16 +00:00
}