smlinux/xfce/xfwm4/xfwm4.SMBuild
SMLinux 57fb724e35 -> Replaced upper case variable names in Xfce with lower case
-> Fixed make install line in xfce/xfce4-session build file to prevent /usr directory from being created when prefix is set to "/"
-> Fixed cmake build option in xfce/xfce4-whiskermenu-plugin build file to properly install whisker menu library in lib instead of lib64
2022-02-13 19:15:42 +05:30

43 lines
No EOL
995 B
Text
Executable file

app=xfwm4
version=4.16.1
build=1sml
homepage="https://docs.xfce.org/xfce/xfwm4/start"
download="https://archive.xfce.org/src/xfce/xfwm4/4.16/xfwm4-4.16.1.tar.bz2"
desc="Xfce Window Manager"
requires="libepoxy libxpresent libxfce4ui xfconf"
build() {
mkandenterbuilddir
rm -rf $app-$version
tar xf $srcdir/$app-$version.tar.?z*
cd $app-$version
fixbuilddirpermissions
# Results in faster window draw and less CPU on the pi
if [ "$ARCH" = "aarch64" ]; then
compositingflag="--disable-compositor"
else
compositingflag="--enable-compositor"
fi
./configure \
--prefix="" \
--sysconfdir=/etc \
--disable-static \
--enable-startup-notification \
--enable-randr \
--enable-xsync \
$compositingflag
make
make install DESTDIR=$pkg
cp COPYING $pkgdocs/
mkfinalpkg
}
sha512sums="
f0d5d00e58202457d0d7d5f9772e7b2aa3f3339850065609baab7d379248a628d147464cc605698970134b87d58b7867b8c09d0a3a45ab84b2f3aa95be26f0b9 xfwm4-4.16.1.tar.bz2
"