mirror of
https://github.com/mac-a-r0ni/crux-xfce4.git
synced 2025-01-22 14:52:19 +01:00
31 lines
594 B
Plaintext
31 lines
594 B
Plaintext
# Description: Freedesktop.org compliant menu library
|
|
# URL: https://www.xfce.org
|
|
# Packager: jolupa, jlpavon at me dot com
|
|
# Maintainer: jolupa, jlpavon at me dot com
|
|
# Depends on: libxfce4util
|
|
|
|
name=garcon
|
|
version=0.7.0
|
|
release=2
|
|
source=(https://archive.xfce.org/src/xfce/$name/${version:0:3}/$name-$version.tar.bz2)
|
|
|
|
build() {
|
|
|
|
cd $name-$version
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--libexecdir=/usr/lib/$name \
|
|
--sysconfdir=/etc \
|
|
--disable-gtk2 \
|
|
--enable-gtk3 \
|
|
--disable-gtk-doc
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
#rm -r $PKG/usr/share/locale
|
|
rm -r $PKG/usr/share/gtk-doc
|
|
|
|
}
|