milis/talimatname/genel/r/restbed/talimat

25 lines
608 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Tanım: A framework for asynchronous RESTful functionality in C++11 applications
# URL: https://github.com/Corvusoft/restbed
# Paketçi: milisarge
# Gerekler: cmake asio kashmir
name=restbed
version=4.6
release=1
source=(https://github.com/Corvusoft/restbed/archive/$version.tar.gz::$name-$version.tar.gz
strand.patch)
build() {
cd "$SRC/$name-$version"
# Necessary to build against asio 1.10.X
patch -p1 < "$SRC"/strand.patch
mkdir -p build
cd build
cmake .. \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_INSTALL_LIBDIR=lib \
-DBUILD_SHARED=on
make
make DESTDIR="$PKG" install
}