PKGBUILDs/extra/boost/PKGBUILD

115 lines
3.6 KiB
Bash
Raw Normal View History

2012-03-06 13:32:55 +00:00
# $Id: PKGBUILD 152201 2012-03-05 08:55:51Z ibiru $
2011-01-19 05:10:54 +00:00
# Maintainer: kevin <kevin@archlinux.org>
# Contributor: Giovanni Scafora <giovanni@archlinux.org>
# Contributor: Kritoke <kritoke@gamebox.net>
2011-01-19 05:10:54 +00:00
# Contributor: Luca Roccia <little_rock@users.sourceforge.net>
2012-07-23 16:34:01 +00:00
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
2011-01-19 05:10:54 +00:00
# - changed _bindir to .linuxarm from .linuxx86
# - removed (optional) dep to openmpi - does not build on ARM
2011-01-19 05:10:54 +00:00
pkgbase=boost
pkgname=('boost-libs' 'boost')
2013-01-29 01:26:22 +00:00
pkgver=1.52.0
2011-01-19 05:10:54 +00:00
_boostver=${pkgver//./_}
2013-01-29 01:26:22 +00:00
pkgrel=1
2011-01-19 05:10:54 +00:00
arch=('i686' 'x86_64')
url="http://www.boost.org/"
2013-01-29 01:26:22 +00:00
makedepends=('icu' 'python' 'python2' 'bzip2' 'zlib')
2012-07-07 17:04:22 +00:00
source=(http://downloads.sourceforge.net/${pkgbase}/${pkgbase}_${_boostver}.tar.gz)
2011-01-19 05:10:54 +00:00
license=('custom')
2013-01-29 01:26:22 +00:00
sha1sums=('1120430030315b0a94b6d63fc04662960db2444c')
2011-01-19 05:10:54 +00:00
_stagedir="${srcdir}/stagedir"
build() {
# set python path for bjam
cd "${srcdir}/${pkgbase}_${_boostver}/tools"
echo "using python : 2.7 : /usr/bin/python2 ;" >> build/v2/user-config.jam
2012-11-19 05:56:05 +00:00
echo "using python : 3.3 : /usr/bin/python3 : /usr/include/python3.3m : /usr/lib ;" >> build/v2/user-config.jam
2011-09-07 23:56:43 +00:00
cd "${srcdir}"/${pkgbase}_${_boostver}
2011-01-19 05:10:54 +00:00
# build bjam
2011-07-30 22:07:37 +00:00
cd "${srcdir}/${pkgbase}_${_boostver}/tools/build/v2/engine"
2011-01-19 05:10:54 +00:00
./build.sh cc
_bindir="bin.linuxarm"
2011-03-09 06:42:42 +00:00
install -d "${_stagedir}"/usr/bin
install ${_bindir}/bjam "${_stagedir}"/usr/bin/bjam
2011-01-19 05:10:54 +00:00
2011-06-09 21:26:22 +00:00
# build tools
cd "${srcdir}/${pkgbase}_${_boostver}/tools/"
"${_stagedir}"/usr/bin/bjam --toolset=gcc
# copy the tools
cd "${srcdir}/${pkgbase}_${_boostver}/dist/bin"
for i in *;do
install -m755 "${i}" "${_stagedir}/usr/bin/${i}"
done
#boostbook needed by quickbook
cd "${srcdir}/${pkgbase}_${_boostver}/dist/"
cp -r share "${_stagedir}"
2011-01-19 05:10:54 +00:00
# build libs
cd "${srcdir}/${pkgbase}_${_boostver}"
2011-03-09 06:42:42 +00:00
2011-01-19 05:10:54 +00:00
# default "minimal" install: "release link=shared,static
2011-03-09 06:42:42 +00:00
# runtime-link=shared threading=single,multi"
2011-01-19 05:10:54 +00:00
# --layout=tagged will add the "-mt" suffix for multithreaded libraries
# and installs includes in /usr/include/boost.
# --layout=system no longer adds the -mt suffix for multi-threaded libs.
# install to ${_stagedir} in preparation for split packaging
2011-06-09 21:26:22 +00:00
"${_stagedir}"/usr/bin/bjam \
2011-03-09 06:42:42 +00:00
release debug-symbols=off threading=multi \
2011-01-19 05:10:54 +00:00
runtime-link=shared link=shared,static \
cflags=-fno-strict-aliasing \
toolset=gcc \
--prefix="${_stagedir}" \
-sTOOLS=gcc \
2011-03-09 06:42:42 +00:00
--layout=system \
2011-01-19 05:10:54 +00:00
${MAKEFLAGS} \
install
}
package_boost() {
pkgdesc="Free peer-reviewed portable C++ source libraries - Development"
depends=("boost-libs=${pkgver}")
2013-01-29 01:26:22 +00:00
optdepends=('python: for python bindings'
2012-03-06 13:32:55 +00:00
'python2: for python2 bindings'
'boost-build: to use boost jam for building your project.')
2011-01-19 05:10:54 +00:00
2011-06-09 21:26:22 +00:00
install -d "${pkgdir}"/usr/{include,lib,share}
2011-01-19 05:10:54 +00:00
# headers/source files
cp -r "${_stagedir}"/include/ "${pkgdir}"/usr/
# static libs
cp -r "${_stagedir}"/lib/*.a "${pkgdir}"/usr/lib/
# utilities (bjam, bcp, pyste)
cp -r "${_stagedir}"/usr/* "${pkgdir}"/usr/
2011-06-09 21:26:22 +00:00
#boostbook
cp -r "${_stagedir}"/share/* "${pkgdir}"/usr/share
2011-01-19 05:10:54 +00:00
# license
install -D -m644 "${srcdir}/${pkgbase}_${_boostver}/LICENSE_1_0.txt" \
"${pkgdir}"/usr/share/licenses/boost/LICENSE_1_0.txt
}
package_boost-libs() {
pkgdesc="Free peer-reviewed portable C++ source libraries - Runtime"
2011-03-09 06:42:42 +00:00
depends=('gcc-libs' 'bzip2' 'zlib' 'icu')
2011-01-19 05:10:54 +00:00
2011-03-09 06:42:42 +00:00
install -d "${pkgdir}/usr/lib"
2011-01-19 05:10:54 +00:00
#shared libs
cp -r "${_stagedir}"/lib/*.so{,.*} "${pkgdir}/usr/lib/"
# license
install -D -m644 "${srcdir}/${pkgbase}_${_boostver}/LICENSE_1_0.txt" \
"${pkgdir}"/usr/share/licenses/boost-libs/LICENSE_1_0.txt
}