7f83052122
Signed-off-by: Nathan Owens <ndowens04@gmail.com>
35 lines
936 B
Bash
35 lines
936 B
Bash
# Template file for 'libgit2'
|
|
pkgname=libgit2
|
|
version=0.28.4
|
|
revision=1
|
|
build_style=cmake
|
|
configure_args="-DTHREADSAFE=ON"
|
|
hostmakedepends="python3 git pkg-config"
|
|
makedepends="zlib-devel libressl-devel http-parser-devel libssh2-devel libuv-devel"
|
|
short_desc="Git linkable library"
|
|
maintainer="Orphaned <orphan@voidlinux.org>"
|
|
license="custom:GPL-2.0-or-later WITH GCC-exception-2.0"
|
|
homepage="https://libgit2.org"
|
|
distfiles="https://github.com/libgit2/libgit2/archive/v${version}.tar.gz"
|
|
checksum=30f3877469d09f2e4a21be933b4e2800560d16646028dd800744dc5f7fb0c749
|
|
|
|
case "$XBPS_TARGET_MACHINE" in
|
|
*-musl)
|
|
# Don't use qsort_r, see src/util.c
|
|
CFLAGS="-D__ANDROID_API__"
|
|
;;
|
|
esac
|
|
|
|
post_install() {
|
|
vlicense COPYING
|
|
}
|
|
|
|
libgit2-devel_package() {
|
|
depends="${makedepends} ${sourcepkg}>=${version}_${revision}"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/pkgconfig
|
|
vmove "usr/lib/*.so"
|
|
}
|
|
}
|