vp-build/srcpkgs/libstrophe/template

35 lines
1.0 KiB
Bash

# Template file for 'libstrophe'
pkgname=libstrophe
version=0.10.1
revision=2
build_style=gnu-configure
configure_args="$(vopt_enable cares) $(vopt_enable tls)"
hostmakedepends="automake libtool pkg-config"
makedepends="$(vopt_if cares c-ares-devel) expat-devel
$(vopt_if tls openssl-devel) zlib-devel"
short_desc="Minimal XMPP library written in C"
maintainer="Orphaned <orphan@voidlinux.org>"
license="GPL-3.0-only"
homepage="http://strophe.im/libstrophe/"
changelog="https://raw.githubusercontent.com/strophe/libstrophe/master/ChangeLog"
distfiles="https://github.com/strophe/libstrophe/archive/${version}.tar.gz"
checksum=5bf0bbc555cb6059008f1b748370d4d2ee1e1fabd3eeab68475263556405ba39
build_options="cares tls"
build_options_default="tls"
pre_configure() {
NOCONFIGURE=1 ./bootstrap.sh
}
libstrophe-devel_package() {
short_desc+=" - development files"
depends="${sourcepkg}>=${version}_${revision}"
pkg_install() {
vmove usr/include
vmove usr/lib/pkgconfig
vmove "usr/lib/*.a"
vmove "usr/lib/*.so"
}
}