mirror of
https://github.com/mac-a-r0ni/crux-xfce4.git
synced 2025-02-03 02:52:20 +01:00
31 lines
628 B
Plaintext
31 lines
628 B
Plaintext
# Description: Xfce's desktop manager
|
|
# URL: https://www.xfce.org
|
|
# Maintainer: jolupa <jolupameister(at)gmail[dot](com)
|
|
# Depends on: libxfce4util xfconf libwnck-gtk3 exo thunar garcon libnotify
|
|
|
|
name=xfdesktop
|
|
version=4.13.3
|
|
release=2
|
|
source=()
|
|
|
|
build() {
|
|
if cd "$name-$version" 2> /dev/null; then
|
|
git pull
|
|
else
|
|
git clone https://git.xfce.org/xfce/$name/ "$name-$version"
|
|
cd "$name-$version"
|
|
fi
|
|
|
|
./autogen.sh \
|
|
--prefix=/usr \
|
|
--sbindir=/usr/sbin \
|
|
--libexecdir=/usr/lib/$name \
|
|
--sysconfdir=/etc \
|
|
--localstatedir=/var \
|
|
--libdir=/usr/lib \
|
|
--enable-shared \
|
|
--disable-debug
|
|
|
|
make DESTDIR=$PKG install
|
|
}
|