mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
38 lines
1.1 KiB
Bash
38 lines
1.1 KiB
Bash
# $Id: PKGBUILD 142967 2011-11-19 08:45:35Z tpowa $
|
|
# Maintainer: Paul Mattal <paul@archlinux.org>
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
# - original OPTIMIZER export does not play nice with our system
|
|
|
|
pkgname=xfsprogs
|
|
pkgver=3.1.11
|
|
pkgrel=2
|
|
pkgdesc="XFS filesystem utilities"
|
|
arch=('i686' 'x86_64')
|
|
license=('LGPL')
|
|
url="http://oss.sgi.com/projects/xfs/"
|
|
groups=('base')
|
|
depends=('util-linux')
|
|
options=('!makeflags')
|
|
# 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=('de9f1f45026c2f4e0776058d429ff4b6')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
#export OPTIMIZER="-march=${CARCH/_/-} -O1"
|
|
export OPTIMIZER="-O1"
|
|
export DEBUG=-DNDEBUG
|
|
./configure --prefix=/usr --sbindir=/usr/bin
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
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"
|
|
}
|