import soci from archlinuxcn
This commit is contained in:
parent
39a4e5ae94
commit
c36585460c
5 changed files with 26 additions and 30 deletions
47
repo/soci/PKGBUILD
Normal file
47
repo/soci/PKGBUILD
Normal file
|
|
@ -0,0 +1,47 @@
|
|||
# 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
|
||||
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' 'boost-libs' 'mariadb-libs')
|
||||
makedepends=('cmake' 'git' 'boost')
|
||||
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')
|
||||
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"
|
||||
}
|
||||
18
repo/soci/lilac.yaml
Normal file
18
repo/soci/lilac.yaml
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
# import from archlinuxcn
|
||||
# https://github.com/archlinuxcn/repo/tree/master/archlinuxcn/soci
|
||||
|
||||
maintainers:
|
||||
- github: yingziwu
|
||||
email: i@bgme.me
|
||||
|
||||
build_prefix: extra-x86_64
|
||||
|
||||
pre_build: vcs_update
|
||||
|
||||
post_build: git_pkgbuild_commit
|
||||
|
||||
update_on:
|
||||
- source: github
|
||||
github: SOCI/soci
|
||||
branch: release/4.0
|
||||
- alias: boost
|
||||
Loading…
Add table
Add a link
Reference in a new issue