blob: d76791bacb14bc4c7ad9c81be982f270965853d1 (
plain)
1 # Description: Operating system and container binary deployment and upgrades
2 # URL: https://ostree.readthedocs.org/en/latest/
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4 # Depends on: avahi fuse gpgme keyutils libsoup
5 # Optional: docbook-xsl
6
7 name=ostree
8 version=2022.7
9 release=1
10 source=(https://github.com/ostreedev/ostree/releases/download/v$version/libostree-$version.tar.xz)
11
12 build() {
13 prt-get isinst docbook-xsl && PKGMK_OSTREE+=' --enable-man=yes' || PKGMK_OSTREE+=' --enable-man=no'
14
15 cd lib$name-$version
16 ./configure $PKGMK_OSTREE \
17 --prefix=/usr \
18 --libexecdir=/usr/lib/$name \
19 --with-openssl \
20 --with-builtin-grub2-mkconfig \
21 --enable-experimental-api \
22 --disable-static
23 make
24 make DESTDIR=$PKG install
25
26 rm -fr $PKG/usr/share/ostree/trusted.gpg.d/README-gpg
27 }
|