40 lines
1.3 KiB
Plaintext
40 lines
1.3 KiB
Plaintext
# Description: Allow applications to extend a menu via Ayatana indicators in Unity, KDE or Systray
|
|
# URL: https://launchpad.net/libappindicator
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
# Depends on: dbus-glib libdbusmenu-gtk2
|
|
|
|
name=libappindicator-gtk2
|
|
version=12.10
|
|
release=1
|
|
source=(http://archive.ubuntu.com/ubuntu/pool/universe/liba/libappindicator/libappindicator_12.10.1+20.10.20200706.1.orig.tar.gz
|
|
0001-Glib.Timeout-fix.patch
|
|
0002-Fix-mono-nunit-pkgconfig-name.patch
|
|
0003-Fix-Mono-assemblies-directory.patch
|
|
badfunction.patch
|
|
improved-plasma-support.patch)
|
|
|
|
build() {
|
|
# The next 3 patches shamelessly pinched from Arch
|
|
patch -p1 -i $SRC/0001-Glib.Timeout-fix.patch
|
|
patch -p1 -i $SRC/0002-Fix-mono-nunit-pkgconfig-name.patch
|
|
patch -p1 -i $SRC/0003-Fix-Mono-assemblies-directory.patch
|
|
|
|
# This one is also from Arch(ish), but had to be recreated best it could
|
|
patch -p1 -i $SRC/improved-plasma-support.patch
|
|
|
|
# Removed a function which had no declaration
|
|
patch -p1 -i $SRC/badfunction.patch
|
|
|
|
sed -i -e 's/ -Werror//' src/Makefile.am
|
|
NOCONFIGURE=1 ./autogen.sh
|
|
|
|
CXXFLAGS+=" -std=c++11" \
|
|
./configure --prefix=/usr \
|
|
--localstatedir=/var \
|
|
--disable-{gtk-doc-html,python,mono-test,static,tests} \
|
|
--with-gtk=2
|
|
|
|
make
|
|
make DESTDIR=$PKG -j1 install
|
|
}
|