PKGBUILDs/core/xfsprogs/PKGBUILD

39 lines
1.1 KiB
Bash
Raw Normal View History

2011-11-20 20:07:00 +00:00
# $Id: PKGBUILD 142967 2011-11-19 08:45:35Z tpowa $
2011-02-01 01:48:16 +00:00
# Maintainer: Paul Mattal <paul@archlinux.org>
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
pkgname=xfsprogs
2014-06-17 00:58:13 +00:00
pkgver=3.2.0
pkgrel=1
2011-02-01 01:48:16 +00:00
pkgdesc="XFS filesystem utilities"
arch=('i686' 'x86_64')
license=('LGPL')
url="http://oss.sgi.com/projects/xfs/"
groups=('base')
2012-05-05 17:35:31 +00:00
depends=('util-linux')
2013-10-30 14:07:32 +00:00
options=('!makeflags')
2011-02-01 01:48:16 +00:00
# We mirror the sources as upstream tends to move them once a new release is out
source=("ftp://ftp.archlinux.org/other/xfsprogs/${pkgname}-${pkgver}.tar.gz")
2014-06-17 00:58:13 +00:00
md5sums=('400047b2f6af87c0345b8f0cc00c13db')
2011-02-01 01:48:16 +00:00
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
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
2013-05-24 12:24:25 +00:00
./configure --prefix=/usr --sbindir=/usr/bin
2011-02-01 01:48:16 +00:00
make
}
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
2013-05-24 12:24:25 +00:00
make DIST_ROOT="${pkgdir}" PKG_ROOT_SBIN_DIR="/usr/bin" install install-dev
2011-02-01 01:48:16 +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
}