mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
98 lines
3.2 KiB
Bash
Executable file
98 lines
3.2 KiB
Bash
Executable file
# Maintainer: kevin <kevin@archlinux.org>
|
|
# Contributor: Giovanni Scafora <giovanni@archlinux.org>
|
|
# TU: Kritoke <kritoke@gamebox.net>
|
|
# Contributor: Luca Roccia <little_rock@users.sourceforge.net>
|
|
|
|
# Plugbox mods: Change linuxx86 to linuxarm
|
|
|
|
pkgbase=boost
|
|
pkgname=('boost-libs' 'boost')
|
|
pkgver=1.43.0
|
|
_boostver=1_43_0
|
|
pkgrel=2
|
|
arch=('arm')
|
|
url="http://www.boost.org/"
|
|
makedepends=('python2' 'bzip2' 'zlib')
|
|
source=(http://downloads.sourceforge.net/sourceforge/${pkgbase}/${pkgbase}_${_boostver}.tar.gz)
|
|
license=('custom')
|
|
options=('!ccache')
|
|
md5sums=('734565ca4819bf04bd8e903e116c3fb1')
|
|
|
|
_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
|
|
|
|
# build bjam
|
|
cd "${srcdir}/${pkgbase}_${_boostver}/tools/jam/src"
|
|
./build.sh cc || return 1
|
|
|
|
_bindir="bin.linuxarm"
|
|
|
|
install -m755 -d "${_stagedir}"/usr/bin
|
|
install -m755 ${_bindir}/bjam "${_stagedir}"/usr/bin/bjam || return 1
|
|
|
|
# build bcp
|
|
cd "${srcdir}/${pkgbase}_${_boostver}/tools/bcp"
|
|
../jam/src/${_bindir}/bjam --toolset=gcc || return 1
|
|
install -m755 "${srcdir}/${pkgbase}_${_boostver}/dist/bin/bcp" \
|
|
${_stagedir}/usr/bin/bcp || return 1
|
|
|
|
# build libs
|
|
cd "${srcdir}/${pkgbase}_${_boostver}"
|
|
# default "minimal" install: "release link=shared,static
|
|
# runtime-link=shared threading=multi"
|
|
# --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
|
|
|
|
./tools/jam/src/${_bindir}/bjam \
|
|
release debug-symbols=off threading=single,multi \
|
|
runtime-link=shared link=shared,static \
|
|
cflags=-fno-strict-aliasing \
|
|
toolset=gcc \
|
|
--prefix="${_stagedir}" \
|
|
-sTOOLS=gcc \
|
|
--layout=tagged \
|
|
install || return 1
|
|
|
|
# build pyste
|
|
cd "${srcdir}/${pkgbase}_${_boostver}/libs/python/pyste/install"
|
|
python2 setup.py install --root=${_stagedir} || return 1
|
|
}
|
|
|
|
package_boost() {
|
|
pkgdesc="Free peer-reviewed portable C++ source libraries - Development"
|
|
depends=("boost-libs=${pkgver}")
|
|
optdepends=('python2: for python bindings')
|
|
|
|
install -dm 755 "${pkgdir}"/usr/{include,lib}
|
|
# 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/
|
|
|
|
# license
|
|
install -D -m644 "${srcdir}/${pkgbase}_${_boostver}/LICENSE_1_0.txt" \
|
|
"${pkgdir}"/usr/share/licenses/boost/LICENSE_1_0.txt || return 1
|
|
}
|
|
|
|
package_boost-libs() {
|
|
pkgdesc="Free peer-reviewed portable C++ source libraries - Runtime"
|
|
depends=('gcc-libs' 'bzip2' 'zlib')
|
|
|
|
install -dm 755 "${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 || return 1
|
|
}
|