void-packages/srcpkgs/seafile-libclient/template

58 lines
1.6 KiB
Bash

# Template file for 'seafile-libclient'
# WARNING: upstream sometimes retag source. Wait for official announcement
pkgname=seafile-libclient
version=7.0.8
revision=2
_distname="${pkgname/-libclient/}"
wrksrc="${_distname}-${version}"
build_style=gnu-configure
configure_args="PYTHON=python3 --disable-static"
hostmakedepends="automake intltool libsearpc-codegen libtool pkg-config vala"
makedepends="libglib-devel libuuid-devel libsearpc-devel sqlite-devel
libevent-devel libcurl-devel"
short_desc="Cloud storage system - library"
maintainer="yopito <pierre.bourgin@free.fr>"
license="GPL-2.0-or-later" # Has openssl exception not yet present on SPDX
homepage="https://seafile.com"
distfiles="https://github.com/haiwen/seafile/archive/v${version}.tar.gz"
checksum=d33e2b78925bf3bd5e7bfa3c78cff43a4be791bcc5686f86ee3aac245e8de825
pre_configure() {
./autogen.sh
}
post_install() {
vdoc README.markdown
}
seafile-libclient-devel_package() {
short_desc="Cloud storage system - development files"
depends="seafile-libclient>=${version}_${revision} glib-devel libsearpc-devel jansson-devel"
pkg_install() {
vdoc README.markdown
vmove usr/include
vmove usr/lib/*.so
vmove usr/lib/pkgconfig
}
}
seafile-libclient-python3_package() {
short_desc="Cloud storage system - Python3 bindings"
depends="libsearpc-python3"
archs=noarch
pkg_install() {
vmove usr/lib/python3*
}
}
seafile-cli_package() {
short_desc="Cloud storage system - client CLI"
depends="seafile-libclient-python3 ${sourcepkg}>=${version}_${revision}"
python_version=3
archs=noarch
pkg_install() {
vmove usr/bin/seaf-cli
vmove usr/share/man/man1/seaf-cli.1
}
}