mirror of
https://github.com/mac-a-r0ni/crux-xfce4.git
synced 2025-01-22 22:52:20 +01:00
f571fc0a04
some ports may return when I find a reason for them to exist
28 lines
564 B
Plaintext
28 lines
564 B
Plaintext
# Description: Application library for the Xfce desktop environment
|
|
# URL: https://www.xfce.org
|
|
# Maintainer: mac-a-r0ni, j at lngn dot net
|
|
# Depends on: gtk3 libxfce4ui libxfce4util p5-uri
|
|
|
|
name=exo
|
|
version=4.18.0
|
|
release=1
|
|
source=(https://archive.xfce.org/src/xfce/exo/${version:0:4}/$name-$version.tar.bz2)
|
|
|
|
build() {
|
|
|
|
cd $name-$version
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--libexecdir=/usr/lib/$name \
|
|
--sysconfdir=/etc \
|
|
--disable-gtk-doc \
|
|
--disable-nls \
|
|
--enable-gtk-doc-html=no
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -r $PKG/usr/share/gtk-doc
|
|
}
|