mirror of
https://github.com/outbackdingo/ports.git
synced 2026-04-05 15:09:22 +00:00
27 lines
637 B
Plaintext
27 lines
637 B
Plaintext
# description : Set of symbols and convenience functions for Ayatana indicators
|
|
# depends : gtk3 python3
|
|
|
|
name=libindicator
|
|
version=12.10.1
|
|
release=2
|
|
source="https://launchpad.net/libindicator/${version%.*}/$version/+download/libindicator-$version.tar.gz"
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
sed -i 's/-Werror//' libindicator/Makefile.am tools/Makefile.am
|
|
autoreconf -fi
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--localstatedir=/var \
|
|
--libexecdir=/usr/lib/libindicator \
|
|
--sysconfdir=/etc \
|
|
--with-gtk=3 \
|
|
--disable-static \
|
|
--disable-tests
|
|
sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|