Date: Thursday, March 30, 2023 @ 07:28:14
Author: tpowa
Revision: 472193
archrelease: copy trunk to testing-x86_64
Added:
xfsprogs/repos/testing-x86_64/
xfsprogs/repos/testing-x86_64/PKGBUILD
(from rev 472192, xfsprogs/trunk/PKGBUILD)
xfsprogs/repos/testing-x86_64/keys/
----------+
PKGBUILD | 40 ++++++++++++++++++++++++++++++++++++++++
1 file changed, 40 insertions(+)
Copied: xfsprogs/repos/testing-x86_64/PKGBUILD (from rev 472192,
xfsprogs/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2023-03-30 07:28:14 UTC (rev 472193)
@@ -0,0 +1,40 @@
+# Maintainer: Tobias Powalowski <[email protected]>
+
+pkgname=xfsprogs
+pkgver=6.2.0
+pkgrel=1
+pkgdesc="XFS filesystem utilities"
+arch=('x86_64')
+license=('LGPL')
+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' 'icu')
+options=('!makeflags')
+source=("git+https://git.kernel.org/pub/scm/fs/xfs/xfsprogs-dev.git?signed#tag=v${pkgver}")
+md5sums=('SKIP')
+validpgpkeys=(
+ '2B8185919E8D248981869DED20AE1692E13DDEE0' # Eric Sandeen
<[email protected]>
+ '4020459E58C1A52511F5399113F703E6C11CF6F0' # Carlos Maiolino
<[email protected]>
+)
+
+build() {
+ cd ${pkgname}-dev
+ make configure
+ export OPTIMIZER="-march=${CARCH/_/-} -O1"
+ export DEBUG=-DNDEBUG
+ ./configure --prefix=/usr --sbindir=/usr/bin
--with-systemd-unit-dir=/usr/lib/systemd/system
+ 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"
+}