mirror of
https://github.com/mac-a-r0ni/crux-xfce4.git
synced 2025-02-02 18:52:19 +01:00
31 lines
586 B
Plaintext
31 lines
586 B
Plaintext
# Description: Xfce's window manager
|
|
# URL: https://www.xfce.org
|
|
# Maintainer: jolupa <jolupameister(at)gmail[dot](com)
|
|
# Depends on: libxfce4util xfconf libwnck-gtk3 exo thunar garcon libnotify
|
|
|
|
name=xfwm4
|
|
version=4.13.1
|
|
release=1
|
|
source=(https://git.xfce.org/xfce/$name/snapshot/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
|
|
cd $name-$version
|
|
|
|
./autogen.sh \
|
|
--prefix=/usr \
|
|
--libexecdir=/usr/lib/$name \
|
|
--enable-shared \
|
|
--enable-xsync \
|
|
--enable-render \
|
|
--enable-randr \
|
|
--enable-xpresent \
|
|
--enable-compositor \
|
|
--disable-debug \
|
|
--with-x
|
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
|
}
|