mirror of
https://github.com/mac-a-r0ni/crux-xfce4.git
synced 2025-01-22 14:52:19 +01:00
29 lines
594 B
Plaintext
29 lines
594 B
Plaintext
# Description: Xfce's panel
|
|
# URL: https://www.xfce.org
|
|
# Maintainer: mac-a-r0ni, j at lngn dot net
|
|
# Depends on: exo garcon libwnck-gtk3 libxfce4ui desktop-file-utils libdbusmenu-gtk3 gobject-introspection vala
|
|
|
|
name=xfce4-panel
|
|
version=4.18.6
|
|
release=1
|
|
source=(https://archive.xfce.org/src/xfce/xfce4-panel/${version:0:4}/$name-$version.tar.bz2)
|
|
|
|
build() {
|
|
|
|
cd $name-$version
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--libexecdir=/usr/lib/$name \
|
|
--sysconfdir=/etc \
|
|
--disable-debug \
|
|
--disable-nls \
|
|
--disable-gtk-doc
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -r $PKG/usr/share/gtk-doc
|
|
|
|
}
|