diff options
author | root <root@rshg047.dnsready.net> | 2011-04-14 04:54:18 +0000 |
---|---|---|
committer | root <root@rshg047.dnsready.net> | 2011-04-14 04:54:18 +0000 |
commit | 0917a0682e48c4261e47d743725d990f47f6ec95 (patch) | |
tree | 32b99e036a20918da470922bf40276cedcfe7506 /core/xz | |
parent | 9c49791f6e912bd4834f00f2c6b3a00e6c12bb73 (diff) |
Thu Apr 14 04:54:18 UTC 2011
Diffstat (limited to 'core/xz')
-rw-r--r-- | core/xz/PKGBUILD | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/core/xz/PKGBUILD b/core/xz/PKGBUILD index 98dbf5c9c..3f85f5aa0 100644 --- a/core/xz/PKGBUILD +++ b/core/xz/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 117398 2011-04-01 14:53:42Z pierre $ +# $Id: PKGBUILD 117397 2011-04-01 14:53:10Z pierre $ # Maintainer: Pierre Schmitz <pierre@archlinux.de> # Contributor: François Charette <firmicus@gmx.net> pkgname=xz -pkgver=5.0.1 +pkgver=5.0.2 pkgrel=1 pkgdesc='Library and command line tools for XZ and LZMA compressed files' arch=('i686' 'x86_64') @@ -15,7 +15,7 @@ replaces=('lzma' 'lzma-utils' 'xz-utils') conflicts=('lzma' 'lzma-utils' 'xz-utils') options=('!libtool') source=("http://tukaani.org/${pkgname}/${pkgname}-${pkgver}.tar.xz") -md5sums=('85d15b01a405616a888d09e19fb40f31') +md5sums=('870d0e6fec3b710903371defb48a2fad') # keep an upgrade path for older installations PKGEXT='.pkg.tar.gz' @@ -26,9 +26,11 @@ build() { ./configure --prefix=/usr \ --disable-rpath \ --enable-werror - sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool - sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool make +} + +check() { + cd ${srcdir}/${pkgname}-${pkgver} make check } |