mirror of
https://github.com/mac-a-r0ni/crux-xfce4.git
synced 2025-02-02 02:42:19 +01:00
28 lines
531 B
Plaintext
28 lines
531 B
Plaintext
# Description: Xfce's desktop manager
|
|
# URL: https://www.xfce.org
|
|
# Maintainer: mac-a-r0ni, j at lngn dot net
|
|
# Depends on: thunar
|
|
|
|
name=xfdesktop
|
|
version=4.20.0
|
|
release=1
|
|
source=(http://archive.xfce.org/src/xfce/$name/${version:0:4}/$name-$version.tar.bz2)
|
|
|
|
build() {
|
|
|
|
cd $name-$version
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--libexecdir=/usr/lib/$name \
|
|
--disable-debug \
|
|
--enable-thunarx
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
find $PKG/usr/lib/* -name "*.la" -type f|xargs rm -f
|
|
rm -r $PKG/usr/share/locale
|
|
|
|
}
|