28 lines
689 B
Bash
28 lines
689 B
Bash
# Template file for 'libbson'
|
|
pkgname=libbson
|
|
version=1.9.3
|
|
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=13b47f23f9ebfcbe91da81f85c9e1111aea2419df0116ce7cd1cbfb2af212c38
|
|
|
|
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
|
|
}
|
|
}
|