diff options
author | Michał Masłowski <mtjm@mtjm.eu> | 2012-05-06 11:43:14 +0200 |
---|---|---|
committer | Michał Masłowski <mtjm@mtjm.eu> | 2012-05-06 11:43:14 +0200 |
commit | 601a559448eb957ac98aca7a6e03de59e45fff91 (patch) | |
tree | 13fc71216622c3d764aa611b6a54e1918f21c496 /core/xfsprogs/PKGBUILD | |
parent | c96a7351e1f295c1e311860dec19ac7b506b0c5c (diff) | |
parent | f37e773fe397778858ea8d51601554863c252536 (diff) |
Merge branch 'master' of ssh://parabolagnulinux.org:1863/home/parabola/abslibre-pre-mips64el
Conflicts:
community/rtorrent/PKGBUILD
core/libcap/PKGBUILD
extra/samba/PKGBUILD
extra/systemd/PKGBUILD
extra/usbmuxd/PKGBUILD
testing/glib2/PKGBUILD
Diffstat (limited to 'core/xfsprogs/PKGBUILD')
-rw-r--r-- | core/xfsprogs/PKGBUILD | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/core/xfsprogs/PKGBUILD b/core/xfsprogs/PKGBUILD index f3b848d07..334c3c4a9 100644 --- a/core/xfsprogs/PKGBUILD +++ b/core/xfsprogs/PKGBUILD @@ -1,14 +1,14 @@ -# $Id: PKGBUILD 156218 2012-04-16 08:21:43Z tpowa $ -# Maintainer: Paul Mattal <paul@archlinux.org> +# $Id: PKGBUILD 158617 2012-05-05 03:17:20Z dreisner $ +# pkgname=xfsprogs pkgver=3.1.8 -pkgrel=1 +pkgrel=2 pkgdesc="XFS filesystem utilities" arch=('i686' 'x86_64' 'mips64el') license=('LGPL') url="http://oss.sgi.com/projects/xfs/" groups=('base') -depends=('util-linux-ng>=2.16') +depends=('util-linux') 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") @@ -19,6 +19,7 @@ build() { export OPTIMIZER="-march=${CARCH/_/-} -O1" [ "$CARCH" = "mips64el" ] && export OPTIMIZER="-mabi=n32 -march=loongson2f -O1" export DEBUG=-DNDEBUG + ./configure --prefix=/usr make } @@ -27,4 +28,7 @@ package() { make DIST_ROOT="${pkgdir}" 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" } |