mirror of
https://github.com/mac-a-r0ni/crux-xfce4.git
synced 2025-01-22 14:52:19 +01:00
28 lines
553 B
Plaintext
28 lines
553 B
Plaintext
# Description: FreeDesktop compliant XFCE menu library
|
|
# URL: https://www.xfce.org
|
|
# Maintainer: mac-a-r0ni, j at lngn dot net
|
|
# Depends on: gobject-introspection libxfce4ui
|
|
|
|
name=garcon
|
|
version=4.18.1
|
|
release=1
|
|
source=(https://archive.xfce.org/src/xfce/garcon/${version:0:4}/$name-$version.tar.bz2)
|
|
|
|
build() {
|
|
|
|
cd $name-$version
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--libexecdir=/usr/lib/$name \
|
|
--sysconfdir=/etc \
|
|
--disable-nls \
|
|
--disable-gtk-doc \
|
|
--enable-gtk-doc-html=no
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -r $PKG/usr/share/gtk-doc
|
|
}
|