summaryrefslogtreecommitdiff
path: root/ostree/Pkgfile
blob: 1e490ea3928cd18ce01f1c87434676c169166619 (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=2021.1
    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   cd lib$name-$version
   15   ./configure $PKGMK_OSTREE \
   16     --prefix=/usr \
   17     --libexecdir=/usr/lib/$name \
   18     --with-openssl \
   19     --with-builtin-grub2-mkconfig \
   20     --enable-experimental-api \
   21     --disable-static
   22   make
   23   make DESTDIR=$PKG install
   24   rm -fr $PKG/usr/share/ostree/trusted.gpg.d/
   25 }

Generated by cgit