28 lines
684 B
Text
28 lines
684 B
Text
# Template file for 'libstrophe'
|
|
pkgname=libstrophe
|
|
version=0.8.6
|
|
revision=2
|
|
build_style=gnu-configure
|
|
hostmakedepends="automake libtool pkg-config git"
|
|
makedepends="expat-devel zlib-devel libressl-devel"
|
|
short_desc="A minimal XMPP library written in C"
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
|
license="GPL-3"
|
|
homepage="http://strophe.im/libstrophe/"
|
|
|
|
do_fetch() {
|
|
git clone git://github.com/strophe/libstrophe ${pkgname}-${version}
|
|
}
|
|
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/*.a
|
|
vmove usr/lib/*.so
|
|
}
|
|
}
|