37 lines
1.1 KiB
Plaintext
37 lines
1.1 KiB
Plaintext
# Description: Linux application sandboxing and distribution framework (formerly xdg-app)
|
|
# URL: https://flatpak.org
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
# Depends on: appstream appstream-glib bubblewrap libseccomp ostree polkit python3-pyparsing
|
|
# Optional: dconf docbook-xsl libxslt xdg-desktop-portal xdg-desktop-portal-gtk xdg-desktop-portal-kde
|
|
|
|
name=flatpak
|
|
version=1.15.6
|
|
release=3
|
|
source=(https://github.com/flatpak/flatpak/releases/download/$version/$name-$version.tar.xz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
prt-get isinst libxslt docbook-xsl docbook-dtd || PKGMK_FLATPAK+=' --disable-documentation'
|
|
|
|
NOCONFIGURE=1 ./autogen.sh
|
|
|
|
./configure $PKGMK_FLATPAK \
|
|
--prefix=/usr \
|
|
--libexecdir=/usr/lib \
|
|
--with-system-bubblewrap \
|
|
--with-priv-mode=setuid \
|
|
--with-profile-dir=/etc/profile.d \
|
|
--with-dbus-config-dir=/usr/share/dbus-1/system.d \
|
|
--with-system-helper-user=flatpak \
|
|
--disable-static \
|
|
--disable-nls
|
|
sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -fr $PKG/usr/lib/{systemd,sysusers.d}
|
|
rm -fr $PKG/usr/share/{gtk-doc,doc,selinux,fish}
|
|
}
|