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
2013-01-14 08:36:10 +00:00
pkgver=3.1.10
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')
2011-02-01 01:48:16 +00:00
options=('!makeflags' '!libtool')
# 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")
2013-01-14 08:36:10 +00:00
md5sums=('d6159f7a664d95b4c150d580399d4400')
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
2012-05-05 17:35:31 +00:00
./configure --prefix=/usr
2011-02-01 01:48:16 +00:00
make
}
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
make DIST_ROOT="${pkgdir}" install install-dev
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
}