Skip to content

Instantly share code, notes, and snippets.

@ajashton
Created October 28, 2010 01:27
Show Gist options
  • Save ajashton/650415 to your computer and use it in GitHub Desktop.
Save ajashton/650415 to your computer and use it in GitHub Desktop.
Diff of my Boost-ICU PKGBUILD with the official Arch PKGBUILD
--- PKGBUILD 2010-10-27 21:25:51.375618429 -0400
+++ ../../extra/boost/PKGBUILD 2010-10-19 00:06:41.000000000 -0400
@@ -3,17 +3,16 @@
# Contributor: Giovanni Scafora <giovanni@archlinux.org>
# TU: Kritoke <kritoke@gamebox.net>
# Contributor: Luca Roccia <little_rock@users.sourceforge.net>
-# Contributor: AJ Ashton <aj.ashton@gmail.com>
-pkgbase=boost-icu
-pkgname=('boost-icu-libs' 'boost-icu')
+pkgbase=boost
+pkgname=('boost-libs' 'boost')
pkgver=1.43.0
_boostver=1_43_0
pkgrel=2
arch=('i686' 'x86_64')
url="http://www.boost.org/"
-makedepends=('python2' 'bzip2' 'zlib' 'icu>=4.2')
-source=(http://downloads.sourceforge.net/sourceforge/boost/boost_${_boostver}.tar.gz)
+makedepends=('python2' 'bzip2' 'zlib')
+source=(http://downloads.sourceforge.net/sourceforge/${pkgbase}/${pkgbase}_${_boostver}.tar.gz)
license=('custom')
options=('!ccache')
md5sums=('734565ca4819bf04bd8e903e116c3fb1')
@@ -22,11 +21,11 @@
build() {
# set python path for bjam
- cd "${srcdir}/boost_${_boostver}/tools"
+ cd "${srcdir}/${pkgbase}_${_boostver}/tools"
echo "using python : 2.7 : /usr/bin/python2 ;" >> build/v2/user-config.jam
# build bjam
- cd "${srcdir}/boost_${_boostver}/tools/jam/src"
+ cd "${srcdir}/${pkgbase}_${_boostver}/tools/jam/src"
./build.sh cc || return 1
_bindir="bin.linuxx86"
@@ -36,13 +35,13 @@
install -m755 ${_bindir}/bjam "${_stagedir}"/usr/bin/bjam || return 1
# build bcp
- cd "${srcdir}/boost_${_boostver}/tools/bcp"
+ cd "${srcdir}/${pkgbase}_${_boostver}/tools/bcp"
../jam/src/${_bindir}/bjam --toolset=gcc || return 1
- install -m755 "${srcdir}/boost_${_boostver}/dist/bin/bcp" \
+ install -m755 "${srcdir}/${pkgbase}_${_boostver}/dist/bin/bcp" \
${_stagedir}/usr/bin/bcp || return 1
# build libs
- cd "${srcdir}/boost_${_boostver}"
+ 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
@@ -55,24 +54,20 @@
runtime-link=shared link=shared,static \
cflags=-fno-strict-aliasing \
toolset=gcc \
- -sHAVE_ICU=1 \
- -sICU_PATH=/usr \
--prefix="${_stagedir}" \
-sTOOLS=gcc \
--layout=tagged \
install || return 1
# build pyste
- cd "${srcdir}/boost_${_boostver}/libs/python/pyste/install"
+ cd "${srcdir}/${pkgbase}_${_boostver}/libs/python/pyste/install"
python2 setup.py install --root=${_stagedir} || return 1
}
-package_boost-icu() {
+package_boost() {
pkgdesc="Free peer-reviewed portable C++ source libraries - Development"
- depends=("boost-icu-libs=${pkgver}")
+ depends=("boost-libs=${pkgver}")
optdepends=('python2: for python bindings')
- conflicts=('boost')
- provides=('boost')
install -dm 755 "${pkgdir}"/usr/{include,lib}
# headers/source files
@@ -85,21 +80,19 @@
cp -r "${_stagedir}"/usr/* "${pkgdir}"/usr/
# license
- install -D -m644 "${srcdir}/boost_${_boostver}/LICENSE_1_0.txt" \
+ install -D -m644 "${srcdir}/${pkgbase}_${_boostver}/LICENSE_1_0.txt" \
"${pkgdir}"/usr/share/licenses/boost/LICENSE_1_0.txt || return 1
}
-package_boost-icu-libs() {
+package_boost-libs() {
pkgdesc="Free peer-reviewed portable C++ source libraries - Runtime"
- depends=('gcc-libs' 'bzip2' 'zlib' 'icu>=4.2')
- conflicts=('boost-libs')
- provides=('boost-libs')
+ 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}/boost_${_boostver}/LICENSE_1_0.txt" \
+ install -D -m644 "${srcdir}/${pkgbase}_${_boostver}/LICENSE_1_0.txt" \
"${pkgdir}"/usr/share/licenses/boost-libs/LICENSE_1_0.txt || return 1
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment