mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
20 lines
715 B
Bash
20 lines
715 B
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
# Contributor: uastasi <uastasi@archlinux.us>
|
|
# Maintainer: Biru Ionut <biru.ionu at gmail.com>
|
|
pkgname=libpanelappletmm
|
|
pkgver=2.26.0
|
|
pkgrel=1
|
|
pkgdesc="C++ library for creating GNOME panel applets"
|
|
arch=('i686' 'x86_64')
|
|
url="http://www.gnome.org"
|
|
license=('GPL')
|
|
depends=( 'gtkmm' 'gnome-panel' 'gconfmm')
|
|
options=('!libtool' '!emptydirs')
|
|
source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/2.26/$pkgname-$pkgver.tar.gz)
|
|
build() {
|
|
cd $startdir/src/$pkgname-$pkgver
|
|
./configure --prefix=/usr --sysconfdir=/usr/share || return 1
|
|
make || return 1
|
|
make DESTDIR=$startdir/pkg install || return 1
|
|
}
|
|
md5sums=('4ba42bcfad45b299b185db44971bb18f')
|