diff options
Diffstat (limited to 'community/libpanelappletmm/PKGBUILD')
-rw-r--r-- | community/libpanelappletmm/PKGBUILD | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/community/libpanelappletmm/PKGBUILD b/community/libpanelappletmm/PKGBUILD new file mode 100644 index 000000000..5d9f5aac3 --- /dev/null +++ b/community/libpanelappletmm/PKGBUILD @@ -0,0 +1,21 @@ +# $Id: PKGBUILD 28934 2010-10-07 19:16:14Z ibiru $ +# Maintainer: Ionut Biru <ibiru@archlinux.org> +# Contributor: uastasi <uastasi@archlinux.us> +pkgname=libpanelappletmm +pkgver=2.26.0 +pkgrel=3 +pkgdesc="C++ library for creating GNOME panel applets" +arch=('i686' 'x86_64') +url="http://www.gnome.org" +license=('GPL') +depends=( 'gtkmm' 'gnome-panel-bonobo' 'gconfmm') +options=('!libtool' '!emptydirs') +source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/2.26/${pkgname}-${pkgver}.tar.bz2) +sha256sums=('7aa569660b7ab36c1d86a7fa0beb7458306678e46bb2b7b1fd782bbcb5eb3852') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + ./configure --prefix=/usr --sysconfdir=/usr/share + make + make DESTDIR="${pkgdir}" install +} |