26 lines
688 B
Bash
26 lines
688 B
Bash
# Template file for 'libbson'
|
|
pkgname=libbson
|
|
version=1.6.2
|
|
revision=1
|
|
build_style=gnu-configure
|
|
hostmakedepends="perl automake libtool"
|
|
short_desc="The BSON serialization library"
|
|
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
|
license="Apache-2.0"
|
|
homepage="https://github.com/mongodb/libbson"
|
|
distfiles="https://github.com/mongodb/libbson/archive/${version}.tar.gz"
|
|
checksum=d9a1b2229a4aac2edb1564b909f0770a972af9bf94994acce2b21b2905913aed
|
|
|
|
pre_configure() {
|
|
NOCONFIGURE=1 ./autogen.sh
|
|
}
|
|
|
|
libbson-devel_package() {
|
|
short_desc+=" - development files"
|
|
depends="${sourcepkg}>=${version}_${revision}"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/*.so
|
|
vmove usr/lib/pkgconfig
|
|
}
|
|
}
|