diff options
author | André Fabian Silva Delgado <emulatorman@parabola.nu> | 2016-11-01 06:25:08 -0300 |
---|---|---|
committer | André Fabian Silva Delgado <emulatorman@parabola.nu> | 2016-11-01 06:25:08 -0300 |
commit | a2e420fa859bdfe790ba0fd48f9d634ea753da87 (patch) | |
tree | 9b40a1d118e9fc2aa60152aba0f471b3199c7dde /libre/povray | |
parent | 2a472d011a761585afe1f171ae3b248c2b5186ae (diff) | |
download | abslibre-a2e420fa859bdfe790ba0fd48f9d634ea753da87.tar.gz abslibre-a2e420fa859bdfe790ba0fd48f9d634ea753da87.tar.bz2 abslibre-a2e420fa859bdfe790ba0fd48f9d634ea753da87.zip |
povray-1:3.7-13.parabola1: boost 1.62.0 rebuild
Diffstat (limited to 'libre/povray')
-rw-r--r-- | libre/povray/PKGBUILD | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/libre/povray/PKGBUILD b/libre/povray/PKGBUILD index a9c95b7c5..d4b8f933b 100644 --- a/libre/povray/PKGBUILD +++ b/libre/povray/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 186933 2016-08-18 09:01:56Z arodseth $ +# $Id: PKGBUILD 191678 2016-10-09 10:15:09Z arodseth $ # Maintainer (Arch): Alexander Rødseth <rodseth@gmail.com> # Contributor (Arch): Tom Newsom <Jeepster@gmx.co.uk> # Contributor (Arch): tobias <tobias@archlinux.org> @@ -10,7 +10,7 @@ _pkgname=povray-libre pkgname=povray pkgver=3.7 -pkgrel=12.parabola1 +pkgrel=13.parabola1 epoch=1 pkgdesc='Script based raytracer for creating 3D graphics, without nonfree documentation' arch=('x86_64' 'i686' 'armv7h') @@ -37,12 +37,12 @@ mksource() { } prepare() { - cd "$pkgname-$pkgver-stable" + cd "$pkgname-$pkgver-stable/unix" - cd unix sed 's/automake --w/automake --add-missing --w/g' -i prebuild.sh sed 's/dist-bzip2/dist-bzip2 subdir-objects/g' -i configure.ac ./prebuild.sh + cd .. ./bootstrap patch -p1 < "$srcdir/povray3.7.0_rc3-user-conf.patch" @@ -51,9 +51,13 @@ prepare() { build() { cd "$pkgname-$pkgver-stable" - ./configure LIBS="-lboost_system -lboost_thread" COMPILED_BY='Parabola GNU/Linux-libre' \ - --prefix=/usr --sysconfdir=/etc - make CXXFLAGS+="-std=c++03 -w -lboost_system -lboost_thread" + ./configure \ + --prefix=/usr \ + --sysconfdir=/etc \ + LIBS="-lboost_system -lboost_thread" \ + COMPILED_BY='Parabola GNU/Linux-libre' + make \ + CXXFLAGS+="-std=c++03 -w -lboost_system -lboost_thread" gzip -f povray.1 } |