# $Id: PKGBUILD 118982 2011-04-09 21:14:21Z tpowa $ # Maintainer: Paul Mattal # PlugApps: Kevin Mihelich # - original OPTIMIZER export does not play nice with our system plugrel=1 pkgname=xfsprogs pkgver=3.1.5 pkgrel=1 pkgdesc="XFS filesystem utilities" arch=('i686' 'x86_64') license=('LGPL') url="http://oss.sgi.com/projects/xfs/" groups=('base') depends=('util-linux-ng>=2.16') 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") md5sums=('b1db37749e2b4149a0dd178abff956be') build() { cd "${srcdir}/${pkgname}-${pkgver}" # export OPTIMIZER="-march=${CARCH/_/-} -O1" export OPTIMIZER="-O1" export DEBUG=-DNDEBUG make } package() { cd "${srcdir}/${pkgname}-${pkgver}" make DIST_ROOT="${pkgdir}" install install-dev chown -R root $pkgdir chgrp -R root $pkgdir }