mirror of
https://github.com/mac-a-r0ni/crux-xfce4.git
synced 2025-02-02 10:42:21 +01:00
33 lines
764 B
Plaintext
33 lines
764 B
Plaintext
# Description: A library to allow applications to export a menu into the Unity Menu bar
|
|
# URL: https://launchpad.net/libappindicator
|
|
# Maintainer: jolupa, jolupameister at gmail dot com
|
|
# Depends on: gtk libdbusmenu libindicator pygtk
|
|
|
|
name=libappindicator
|
|
version=12.10.0
|
|
release=1
|
|
source=(https://launchpad.net/libappindicator/${version%.*}/$version/+download/$name-$version.tar.gz pointer.patch)
|
|
|
|
build() {
|
|
|
|
export CFLAGS="${CFLAGS} -Wno-deprecated-declarations"
|
|
|
|
cd $name-$version
|
|
|
|
patch -p1 -i $SRC/pointer.patch
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--libexecdir=/usr/lib/$name \
|
|
--with-gtk=3 \
|
|
--disable-tests \
|
|
--enable-introspection=auto \
|
|
--disable-mono-test
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -r $PKG/usr/share/gtk-doc
|
|
|
|
}
|