mirror of
https://github.com/mac-a-r0ni/crux-xfce4.git
synced 2025-01-15 20:12:20 +01:00
29 lines
599 B
Plaintext
29 lines
599 B
Plaintext
# Description: Wayland windowing library for Xfce
|
|
# URL: https://www.xfce.org
|
|
# Maintainer: mac-a-r0ni, j at lngn dot net
|
|
# Depends on: libdisplay-info libwnck-gtk3 wayland xfce4-dev-tools
|
|
|
|
name=libxfce4windowing
|
|
version=4.20.0
|
|
release=1
|
|
source=(https://archive.xfce.org/src/xfce/$name/${version:0:4}/$name-$version.tar.bz2)
|
|
|
|
build() {
|
|
|
|
cd $name-$version
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--disable-debug \
|
|
--disable-static \
|
|
--disable-nls \
|
|
--enable-gtk-doc-html=no
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
find $PKG/usr/lib/* -name "*.la" -type f|xargs rm -f
|
|
rm -r $PKG/usr/share/gtk-doc
|
|
|
|
}
|