mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-11 10:34:36 +08:00
33 lines
829 B
Bash
33 lines
829 B
Bash
pkgname=xfsprogs
|
|
pkgver=4.15.1
|
|
pkgrel=1
|
|
pkgdesc="XFS filesystem utilities"
|
|
arch=('x86_64')
|
|
license=('LGPL')
|
|
url="http://xfs.org/"
|
|
groups=('base')
|
|
depends=('util-linux' 'sh' 'readline')
|
|
makedepends=('git')
|
|
options=('!makeflags')
|
|
source=("git+https://git.kernel.org/pub/scm/fs/xfs/xfsprogs-dev.git#tag=v${pkgver}")
|
|
md5sums=('SKIP')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-dev"
|
|
make configure
|
|
export OPTIMIZER="-march=${CARCH/_/-} -O1"
|
|
export DEBUG=-DNDEBUG
|
|
./configure --prefix=/usr --sbindir=/usr/bin --enable-readline
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-dev"
|
|
make DIST_ROOT="${pkgdir}" PKG_ROOT_SBIN_DIR="/usr/sbin" 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"
|
|
}
|