55 lines
1.5 KiB
Bash
55 lines
1.5 KiB
Bash
# Template file for 'seafile-libclient'
|
|
pkgname=seafile-libclient
|
|
version=8.0.10
|
|
revision=3
|
|
_distname="${pkgname/-libclient/}"
|
|
build_style=gnu-configure
|
|
configure_args="PYTHON=python3 --disable-static"
|
|
hostmakedepends="automake intltool libsearpc-codegen libtool pkg-config vala
|
|
glib-devel"
|
|
makedepends="libglib-devel libuuid-devel libsearpc-devel sqlite-devel
|
|
libevent-devel libcurl-devel libwebsockets-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=bcfa6576a272486cf30b7fa2207992b01b071bcc5744f0923a0d924c0257b8a5
|
|
|
|
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"
|
|
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
|
|
pkg_install() {
|
|
vmove usr/bin/seaf-cli
|
|
vmove usr/share/man/man1/seaf-cli.1
|
|
}
|
|
}
|