mirror of
https://github.com/mac-a-r0ni/crux-xfce4.git
synced 2025-02-02 10:42:21 +01:00
30 lines
621 B
Plaintext
30 lines
621 B
Plaintext
# Description: Application library for the Xfce desktop environment
|
|
# URL: https://www.xfce.org
|
|
# Maintainer: jolupa, jlpavon at me dot com
|
|
# Depends on: xfce4-dev-tools libxfce4util libxfce4ui gtk3 p5-uri
|
|
|
|
name=exo
|
|
version=0.12.6
|
|
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 \
|
|
--mandir=/usr/man \
|
|
--disable-gtk-doc \
|
|
--disable-gtk-doc-html \
|
|
--disable-gtk-doc-pdf \
|
|
--disable-gtk2 \
|
|
--enable-gtk3
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
#rm -r $PKG/usr/share/locale
|
|
}
|