# # KDE SC Packages for Chakra, part of chakra-project.org # # maintainer (i686): Phil Miller # maintainer (x86_64): Manuel Tortosa # include global config source ../_buildscripts/${current_repo}-${_arch}-cfg.conf # original name (used for the source and pkgnames) _origname=libindicate pkgname=${_origname} pkgbranch=0.2 pkgver=0.2.3 pkgrel=2 pkgdesc='A small library for applications to raise "flags" on DBus for other components of the desktop to pick up and visualize. (Canonical Ayatana Project)' arch=('i686' 'x86_64') url="https://launchpad.net/libindicate" license=('GPL') depends=('glib2' 'dbus-glib' 'libxml2') # 'gtk2' makedepends=() groups=("kde-uninstall" "kde-support") options=('!splitdbg' '!splithdr') source=(http://launchpad.net/${_origname}/${pkgbranch}/${pkgver}/+download/${_origname}-${pkgver}.tar.gz) md5sums=('c32f2cdd85534feea4a5ebd532ede641') # libindicate-0.2.3.tar.gz build() { cd "$srcdir"/${_origname}-$pkgver ./configure --prefix=/usr --disable-static --disable-gtk-doc --disable-gobject-introspection || return 1 make || return 1 make DESTDIR="$pkgdir" install || return 1 # cleanup docs rm -R "$pkgdir"/usr/share }