51 lines
1.5 KiB
Bash
51 lines
1.5 KiB
Bash
# Template file for 'ostree'
|
|
pkgname=ostree
|
|
version=2024.3
|
|
revision=2
|
|
build_style=gnu-configure
|
|
build_helper="gir"
|
|
configure_args="
|
|
--with-builtin-grub2-mkconfig
|
|
--with-ed25519-libsodium
|
|
--with-openssl
|
|
--with-curl
|
|
--without-soup3
|
|
$(vopt_enable gir introspection)"
|
|
hostmakedepends="bison docbook-xsl glib-devel libxslt pkg-config"
|
|
makedepends="e2fsprogs-devel fuse-devel glib-devel gpgme-devel libarchive-devel
|
|
libcurl-devel libsodium-devel $(vopt_if gir 'gobject-introspection')"
|
|
checkdepends="attr-progs cpio elfutils gnupg python3-yaml tar which xz"
|
|
short_desc="Operating system and container binary deployment and upgrades"
|
|
maintainer="Duncaen <duncaen@voidlinux.org>"
|
|
license="LGPL-2.0-or-later"
|
|
homepage="https://ostree.readthedocs.io/en/latest/"
|
|
changelog="https://github.com/ostreedev/ostree/releases"
|
|
distfiles="https://github.com/ostreedev/ostree/releases/download/v${version}/libostree-${version}.tar.xz"
|
|
checksum=5e0daaaa70772bfa00bd3d0c25d11f7c1f6d41a996708fad8bf9941f0a36bc8d
|
|
|
|
build_options="gir"
|
|
build_options_default="gir"
|
|
|
|
post_install() {
|
|
vcompletion bash/ostree bash
|
|
}
|
|
|
|
libostree_package() {
|
|
depends="${sourcepkg}>=${version}_${revision}"
|
|
short_desc+=" - transitional dummy package"
|
|
build_style=meta
|
|
}
|
|
|
|
libostree-devel_package() {
|
|
depends="${sourcepkg}>=${version}_${revision} libglib-devel"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/pkgconfig
|
|
vmove "usr/lib/*.so"
|
|
if [ "$build_option_gir" ]; then
|
|
vmove usr/share/gir-1.0
|
|
fi
|
|
}
|
|
}
|