31 lines
903 B
Bash
31 lines
903 B
Bash
# Template file for 'libpqxx'
|
|
pkgname=libpqxx
|
|
version=6.2.4
|
|
revision=1
|
|
build_style=gnu-configure
|
|
configure_args="--enable-shared --disable-documentation"
|
|
hostmakedepends="postgresql-libs-devel python"
|
|
makedepends="postgresql-libs-devel"
|
|
short_desc="C++ connector for PostgreSQL"
|
|
maintainer="John Regan <john@jrjrtech.com>"
|
|
license="BSD-3-Clause"
|
|
homepage="http://pqxx.org/development/libpqxx"
|
|
changelog="https://raw.githubusercontent.com/jtv/libpqxx/master/NEWS"
|
|
distfiles="https://github.com/jtv/${pkgname}/archive/${version}.tar.gz"
|
|
checksum=91a295d9e06fc36db5d993970aa1928e053a57ec03bf6284a1c534844ed35ed3
|
|
|
|
post_install() {
|
|
vlicense COPYING
|
|
}
|
|
|
|
libpqxx-devel_package() {
|
|
short_desc+=" - development files"
|
|
depends="${sourcepkg}>=${version}_${revision}"
|
|
pkg_install() {
|
|
vmove usr/bin/pqxx-config
|
|
vmove usr/include
|
|
vmove "usr/lib/*.a"
|
|
vmove usr/lib/libpqxx.so
|
|
vmove usr/lib/pkgconfig
|
|
}
|
|
}
|