23 lines
569 B
Plaintext
23 lines
569 B
Plaintext
# Description: A set of symbols and convience functions that all indicators would like to use
|
|
# URL: http://launchpad.net/libindicator
|
|
# Maintainer: CRUX Xfce Team, xfce-ports at crux dot nu
|
|
# Packager: Jose V Beneyto, sepen at crux dot nu
|
|
# Depends on: gtk
|
|
# Group: xfce4
|
|
|
|
name=libindicator
|
|
version=12.10.1
|
|
release=1
|
|
source=(http://launchpad.net/$name/${version%.*}/$version/+download/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
./configure --prefix=/usr \
|
|
--with-gtk=2 \
|
|
--disable-static
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|