milis/talimatname/genel/j/jsoncpp/talimat

30 lines
695 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: JSON C++ kütüphanesi
# URL: http://jsoncpp.sourceforge.net/
# Paketçi: milisarge
# Gerekler: cmake
# Grup: kütüphane
isim=jsoncpp
surum=1.8.4
devir=1
kaynak=(https://github.com/open-source-parsers/$isim/archive/$surum.tar.gz::${isim}-${surum}.tar.gz)
derle() {
cd ${isim}-${surum}
mkdir -p build
#python3 doxybuild.py --with-dot
cd build
cmake \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_INSTALL_LIBDIR=lib \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr \
-DBUILD_SHARED_LIBS=ON \
-DBUILD_STATIC_LIBS=ON \
..
make
cd ..
make -C build DESTDIR="${PKG}" install
install -Dm 644 LICENSE -t "${PKG}/usr/share/licenses/${isim}"
}