core/boost/PKGBUILD

118 lines
3.6 KiB
Bash
Raw Normal View History

2010-10-10 00:00:37 +08:00
#
# Core Packages for Chakra, part of chakra-project.org
#
# maintainer abveritas[at]chakra-project[dot]org>
2010-10-10 00:00:37 +08:00
# Contributor: Artyom Smirnov <smirnoffjr@gmail.com>
# Note: you have to rebuild those pkgs
# Core: repo-clean
# Platform: akonadi (exempi uses boost just as makedep)
# Desktop: kdeedu (kdenetwork, kdepimlibs, kdepim, kdesdk and koffice using boost just as makedep)
2010-03-22 01:35:58 +08:00
2011-06-26 04:25:43 +08:00
pkgbase=boost
pkgname=('boost-libs' 'boost')
pkgver=1.52.0
2011-06-26 04:25:43 +08:00
_boostver=${pkgver//./_}
pkgrel=1
2010-03-22 01:35:58 +08:00
pkgdesc="Free peer-reviewed portable C++ source libraries"
arch=('x86_64')
2010-03-22 01:35:58 +08:00
url="http://www.boost.org/"
2011-06-26 02:52:01 +08:00
license=('custom')
makedepends=('icu' 'python2' 'python3' 'bzip2' 'zlib' 'openmpi')
source=("http://downloads.sourceforge.net/${pkgbase}/${pkgbase}_${_boostver}.tar.gz")
2012-01-12 06:40:54 +08:00
license=('custom')
md5sums=('f62451fa646ca392b0fbc08beb23ad12')
2010-03-22 01:35:58 +08:00
2011-06-26 04:25:43 +08:00
_stagedir="${srcdir}/stagedir"
2010-03-22 01:35:58 +08:00
2011-06-26 04:25:43 +08:00
build() {
# set python path for bjam
cd "${srcdir}/${pkgbase}_${_boostver}/tools"
echo "using python : 2.7 : /usr/bin/python2 ;" >> build/v2/user-config.jam
echo "using python : 3.3 : /usr/bin/python3 : /usr/include/python3.3m : /usr/lib ;" >> build/v2/user-config.jam
2012-01-12 06:40:54 +08:00
echo "using mpi ;" >> build/v2/user-config.jam
cd "${srcdir}"/${pkgbase}_${_boostver}
2011-06-26 02:52:01 +08:00
2011-06-26 04:25:43 +08:00
# build bjam
2012-01-12 06:40:54 +08:00
cd "${srcdir}/${pkgbase}_${_boostver}/tools/build/v2/engine"
2011-06-26 02:52:01 +08:00
./build.sh cc
2010-03-22 01:35:58 +08:00
2011-06-26 04:25:43 +08:00
install -d "${_stagedir}"/usr/bin
install bin.linuxx86_64/bjam "${_stagedir}"/usr/bin/bjam
2011-06-26 02:52:01 +08:00
2011-06-26 04:25:43 +08:00
# build tools
cd "${srcdir}/${pkgbase}_${_boostver}/tools/"
"${_stagedir}"/usr/bin/bjam --toolset=gcc
2011-06-26 02:52:01 +08:00
2011-06-26 04:25:43 +08:00
# copy the tools
cd "${srcdir}/${pkgbase}_${_boostver}/dist/bin"
for i in *;do
install -m755 "${i}" "${_stagedir}/usr/bin/${i}"
2011-06-26 02:52:01 +08:00
done
2010-03-22 01:35:58 +08:00
2011-06-26 04:25:43 +08:00
#boostbook needed by quickbook
cd "${srcdir}/${pkgbase}_${_boostver}/dist/"
cp -r share "${_stagedir}"
2010-03-22 01:35:58 +08:00
2011-06-26 04:25:43 +08:00
# build libs
cd "${srcdir}/${pkgbase}_${_boostver}"
2010-03-22 01:35:58 +08:00
# default "minimal" install: "release link=shared,static
2011-06-26 02:52:01 +08:00
# runtime-link=shared threading=single,multi"
2010-03-22 01:35:58 +08: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.
2011-06-26 02:52:01 +08:00
# install to ${_stagedir} in preparation for split packaging
2010-03-22 01:35:58 +08:00
2011-06-26 04:25:43 +08:00
"${_stagedir}"/usr/bin/bjam \
2011-06-26 02:52:01 +08:00
release debug-symbols=off threading=multi \
runtime-link=shared link=shared,static \
cflags=-fno-strict-aliasing \
toolset=gcc \
2011-06-26 04:25:43 +08:00
--prefix="${_stagedir}" \
2011-06-26 02:52:01 +08:00
-sTOOLS=gcc \
--layout=system \
2011-06-26 04:25:43 +08:00
${MAKEFLAGS} \
2011-06-26 02:52:01 +08:00
install
2011-06-26 04:25:43 +08:00
}
package_boost() {
pkgdesc="Free peer-reviewed portable C++ source libraries - Development"
depends=("boost-libs=${pkgver}")
optdepends=('python3: for python3 bindings'
2011-06-26 04:25:43 +08:00
'python2: for python2 bindings')
install -d "${pkgdir}"/usr/{include,lib,share}
# 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/
#boostbook
cp -r "${_stagedir}"/share/* "${pkgdir}"/usr/share
# 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"
depends=('gcc-libs' 'bzip2' 'zlib' 'icu')
2011-06-26 04:25:43 +08:00
optdepends=('openmpi: for mpi support')
install -d "${pkgdir}/usr/lib"
#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
2010-03-22 01:35:58 +08:00
}
2012-01-12 06:40:54 +08:00