soci-git: auto updated to 4.0.3.r0.g438e3549-1

This commit is contained in:
Lilac 2023-05-15 14:21:36 +00:00
parent 2e02b5fbe4
commit a8bd0b5fb2

50
repo/soci-git/PKGBUILD Normal file
View file

@ -0,0 +1,50 @@
# Maintainer: Guillaume Horel <guillaume.horel@gmail.com>
# Contributor: Marcin (CTRL) Wieczorek <marcin@marcin.co>
# Contributor: Daniel Nagy <danielnagy at gmx de>
# Contributor: Mika Fischer <mika.fischer@zoopnet.de>
pkgname=soci-git
pkgname_=soci
pkgver=4.0.3.r0.g438e3549
pkgrel=1
pkgdesc="Database access library for C++"
arch=('x86_64')
url="http://soci.sf.net"
license=('custom:boost')
depends=('postgresql-libs' 'sqlite3' 'unixodbc')
makedepends=("cmake" "git")
optdepends=('instantclient-basic: support for oracle databases'
'libmysqlclient: support for mysql databases'
'postgresql-libs: support for postgresql databases'
'sqlite3: support for sqlite databases'
'unixodbc: support for ODBC databases')
provides=("soci=$pkgver")
conflicts=('soci')
source=("git+https://github.com/SOCI/soci.git#branch=release/4.0")
sha1sums=('SKIP')
pkgver() {
cd "${srcdir}/${pkgname_}"
git describe --long --tags | sed 's/^v//;s/\([^-]*-g\)/r\1/; s/-/./g'
}
build() {
cmake -B build "${pkgname_}" \
-DSOCI_TESTS=OFF \
-DCMAKE_INSTALL_PREFIX="/usr" \
-DCMAKE_CXX_FLAGS="-Wno-format-overflow" \
-DSOCI_CXX11=ON \
-Wno-dev
make -C build
}
package() {
make DESTDIR="${pkgdir}" -C build install
# For some reason -DLIBDIR=lib causes libsoci_empty.so to disappear
if [ -e "${pkgdir}/usr/lib64" ]; then
mv "${pkgdir}/usr/lib64" "${pkgdir}/usr/lib"
fi
install -Dm0644 "${srcdir}/${pkgname_}/LICENSE_1_0.txt" \
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}