blob: 45ae4129166ac0c697e01e8c2237188778a7494e (
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
|
# Contributor: Carlo Landmeter <clandmeter@gmail.com>
# Maintainer:
pkgname=websocket++
pkgver=0.5.1
pkgrel=0
pkgdesc="C++/Boost Asio based websocket client/server library"
url="https://github.com/zaphoyd/websocketpp"
arch="all"
license="BSD"
depends=""
depends_dev=""
makedepends="$depends_dev cmake"
install=""
subpackages=""
source="$pkgname-$pkgver.tar.gz::https://github.com/zaphoyd/websocketpp/archive/${pkgver}.tar.gz"
_builddir="$srcdir"/websocketpp-$pkgver
prepare() {
local i
cd "$_builddir"
for i in $source; do
case $i in
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
esac
done
}
build() {
mkdir -p "$_builddir"/build
cd "$_builddir"/build
cmake "$_builddir" \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_BUILD_TYPE=Release \
|| return 1
make || return 1
}
package() {
cd "$_builddir"/build
make DESTDIR="$pkgdir" install || return 1
}
md5sums="910e298f50f07f7d2f96642d28c082fd websocket++-0.5.1.tar.gz"
sha256sums="6d4d9b7b9feee63d45b1a2f62610c419238346fb824336bd732dca31b3aea69e websocket++-0.5.1.tar.gz"
sha512sums="004400d4cbc90b6c3a79b2ba8fa4420ec8020234364d008229cbfb80461609c07d6be7bac92a3e33e4ffe1ef8ea12b38f020bc730dd1f46160df117c538e149f websocket++-0.5.1.tar.gz"
|