contrib/libsoci/Pkgfile

27 lines
760 B
Plaintext
Raw Normal View History

2021-01-20 14:27:20 +01:00
# Description: a database access library for C++
# URL: http://soci.sourceforge.net/
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: boost cmake postgresql zlib
2021-07-24 19:07:02 +02:00
# Optional: mariadb mysql unixodbc
2021-01-20 14:27:20 +01:00
name=libsoci
2021-07-24 19:07:02 +02:00
version=4.0.2
2021-01-20 14:27:20 +01:00
release=1
2021-07-24 19:07:02 +02:00
source=(https://downloads.sourceforge.net/project/soci/soci/soci-$version/soci-$version.tar.gz)
2021-01-20 14:27:20 +01:00
build() {
2021-07-24 19:07:02 +02:00
prt-get isinst ninja && PKGMK_LIBSOCI+=' -G Ninja'
2021-01-20 14:27:20 +01:00
cmake -S soci-$version -B build $PKGMK_LIBSOCI \
-D CMAKE_INSTALL_PREFIX=/usr \
2021-07-24 19:07:02 +02:00
-D CMAKE_INSTALL_LIBDIR=lib \
2021-01-20 14:27:20 +01:00
-D CMAKE_BUILD_TYPE=Release \
-D CMAKE_CXX_FLAGS_RELEASE="$CXXFLAGS" \
-D WITH_POSTGRESQL=ON \
-D SOCI_CXX11=ON \
2021-07-24 19:07:02 +02:00
-D SOCI_TESTS=OFF \
2021-01-20 14:27:20 +01:00
-Wno-dev
cmake --build build
DESTDIR=$PKG cmake --install build
}