blob: 420e1c7ec963ba23b08a79dbd8272f8e2dcdd186 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
# Maintainer: Paul Hentschel (hpmachining)
# Contributor: greyltc
pkgname=cbang-git
pkgver=r1771.1b05ea96
pkgrel=1
pkgdesc="A library of cross-platform C++ utilities"
arch=('x86_64')
url="https://github.com/CauldronDevelopmentLLC/cbang"
license=('LGPL2.1')
depends=(
'v8-r'
'libevent'
'sqlite'
're2'
'libyaml'
'zlib'
'bzip2'
'expat'
)
makedepends=(
'git'
'scons'
)
checkdepends=(
'python'
'python-six'
)
optdepends=(
'mariadb-libs: MariaDB database support'
)
conflicts=("${pkgname%-git}")
provides=("${pkgname%-git}")
#_commit="58d2cb5cbce2e1d4e71cc7bbac65a49ddb6e40fe"
#source=("git+https://github.com/CauldronDevelopmentLLC/cbang.git#commit=$_commit"
source=("git+https://github.com/CauldronDevelopmentLLC/cbang.git"
"0001_v8_sandbox_enable.patch")
sha256sums=('SKIP'
'75eff0bcd04293990f8dfb0771562356ccac2a7f40a06df0c0ba515fcdf4126a')
pkgver() {
cd "${pkgname%-git}"
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
prepare() {
cd "${pkgname%-git}"
patch -p1 -i "../0001_v8_sandbox_enable.patch"
}
build() {
cd "${pkgname%-git}"
scons cxxstd="c++17" disable_local="libevent sqlite3 re2 libyaml zlib bzip2 expat"
}
check() {
cd "${pkgname%-git}/tests"
scons cxxstd="c++17" disable_local="libevent sqlite3 re2 libyaml zlib bzip2 expat"
python ./testHarness
}
package() {
cd "${pkgname%-git}"
scons install cxxstd="c++17" prefix="$pkgdir/opt/${pkgname%-git}"
install -m644 lib/libcbang.a -t "$pkgdir/opt/${pkgname%-git}/lib"
install -m644 lib/libcbang-boost.a -t "$pkgdir/opt/${pkgname%-git}/lib"
cp -a config/ "$pkgdir/opt/${pkgname%-git}/config/"
cp -a src/boost/boost/ "$pkgdir/opt/${pkgname%-git}/include/"
cp -a include/cbang/ "$pkgdir/opt/${pkgname%-git}/include/"
cp -a include/event2/ "$pkgdir/opt/${pkgname%-git}/include/"
cp -a include/lz4/ "$pkgdir/opt/${pkgname%-git}/include/"
cp -a src/cbang/boost/ "$pkgdir/opt/${pkgname%-git}/include/cbang/"
}
|