msgpack-c.paketlendi

This commit is contained in:
milisman 2016-07-14 11:30:30 +00:00
parent f515caec7a
commit 8acdcaebdc
1 changed files with 19 additions and 0 deletions

View File

@ -0,0 +1,19 @@
# Description: An efficient object serialization library, C/C++ version.
# URL: https://github.com/msgpack/msgpack-c
# Packager: milisarge
# Depends on: cmake
name=msgpack-c
version=2.0.0
release=1
source=(https://github.com/msgpack/msgpack-c/archive/cpp-$version.tar.gz)
build() {
cd $name-cpp-$version
mkdir build ; cd build
cmake .. -DCMAKE_INSTALL_PREFIX=/usr
make
make DESTDIR=$PKG install
}