28 lines
811 B
Plaintext
28 lines
811 B
Plaintext
# Description: Operating system and container binary deployment and upgrades
|
|
# URL: https://ostree.readthedocs.org/en/latest/
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
# Depends on: avahi fuse gpgme keyutils libsoup
|
|
# Optional: docbook-xsl
|
|
|
|
name=ostree
|
|
version=2022.5
|
|
release=1
|
|
source=(https://github.com/ostreedev/ostree/releases/download/v$version/libostree-$version.tar.xz)
|
|
|
|
build() {
|
|
prt-get isinst docbook-xsl && PKGMK_OSTREE+=' --enable-man=yes' || PKGMK_OSTREE+=' --enable-man=no'
|
|
|
|
cd lib$name-$version
|
|
./configure $PKGMK_OSTREE \
|
|
--prefix=/usr \
|
|
--libexecdir=/usr/lib/$name \
|
|
--with-openssl \
|
|
--with-builtin-grub2-mkconfig \
|
|
--enable-experimental-api \
|
|
--disable-static
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -fr $PKG/usr/share/ostree/trusted.gpg.d/README-gpg
|
|
}
|