diff options
Diffstat (limited to 'abs')
-rw-r--r-- | abs/extra-testing/boost/PKGBUILD | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/abs/extra-testing/boost/PKGBUILD b/abs/extra-testing/boost/PKGBUILD index 485d0bb..1fcfd98 100644 --- a/abs/extra-testing/boost/PKGBUILD +++ b/abs/extra-testing/boost/PKGBUILD @@ -1,24 +1,23 @@ -# $Id: PKGBUILD 14045 2008-10-02 03:09:29Z kevin $ +# $Id: PKGBUILD 24200 2009-01-15 01:41:45Z douglas $ # Maintainer: kevin <kevin@archlinux.org> # TU: Kritoke <kritoke@gamebox.net> # Contributor: Luca Roccia <little_rock@users.sourceforge.net> pkgname=boost -pkgver=1.36.0 -_boostver=1_36_0 -pkgrel=2 +pkgver=1.37.0 +_boostver=1_37_0 +pkgrel=1 pkgdesc="Boost provides free peer-reviewed portable C++ source libraries." arch=(i686 x86_64) url="http://www.boost.org/" depends=('python>=2.5' 'bzip2' 'zlib') source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}_${_boostver}.tar.gz 0001-date_time-gcc-4.3-fix.patch) license=('custom') -md5sums=('550b9157a596f9095aaafd683c4bccf8' 'd7f821056540ef08eb1d5ebd5ed017f1') build() { cd ${srcdir}/${pkgname}_${_boostver} export CFLAGS="${CFLAGS} -fno-strict-aliasing" - patch -Np1 -i ${srcdir}/0001-date_time-gcc-4.3-fix.patch || return 1 + #patch -Np1 -i ${srcdir}/0001-date_time-gcc-4.3-fix.patch || return 1 # build bjam cd ${srcdir}/${pkgname}_${_boostver}/tools/jam/src @@ -60,3 +59,5 @@ build() { install -m644 ${srcdir}/${pkgname}_${_boostver}/LICENSE_1_0.txt \ ${pkgdir}/usr/share/licenses/${pkgname}/ || return 1 } +md5sums=('c38b88bb4ebc6d0d9193f432842273d2' + 'd7f821056540ef08eb1d5ebd5ed017f1') |