contrib/ostree/Pkgfile

28 lines
811 B
Plaintext
Raw Normal View History

2019-06-11 23:45:48 +02:00
# 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
2019-06-11 23:45:48 +02:00
name=ostree
2022-11-26 10:16:40 +01:00
version=2022.7
2021-03-24 14:08:18 +01:00
release=1
2019-06-11 23:45:48 +02:00
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'
2022-03-05 13:40:15 +01:00
2019-06-11 23:45:48 +02:00
cd lib$name-$version
./configure $PKGMK_OSTREE \
--prefix=/usr \
2019-06-11 23:45:48 +02:00
--libexecdir=/usr/lib/$name \
--with-openssl \
--with-builtin-grub2-mkconfig \
--enable-experimental-api \
--disable-static
make
make DESTDIR=$PKG install
2022-03-05 13:40:15 +01:00
rm -fr $PKG/usr/share/ostree/trusted.gpg.d/README-gpg
2019-06-11 23:45:48 +02:00
}