summaryrefslogtreecommitdiff
path: root/pcr/gtkmm-utils/PKGBUILD
blob: a79b627c4a1add23235c11110243e148850ccbe5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# Contributor: TDY <tdy@gmx.com>
# Contributor: Michele Vascellari <michele.vascellari@gmail.com>
# Maintainer: Aurélien Desbrières <aurelien@cwb.io>

pkgname=gtkmm-utils
pkgver=0.4.1
pkgrel=2
pkgdesc="High level utility functions/classes/widgets for gtkmm and glibmm"
arch=('i686' 'x86_64')
url="http://gtkmm-utils.googlecode.com/"
license=('GPL')
depends=('gtkmm')
makedepends=('pkgconfig>=0.9.0')
source=(http://$pkgname.googlecode.com/files/$pkgname-$pkgver.tar.gz
        $pkgname-glib.diff)

build() {
  cd "$srcdir/$pkgname-$pkgver"
  patch -Np1 -i "$srcdir/$pkgname-glib.diff"
  ./configure --prefix=/usr
  make
}

package() {
  cd "$srcdir/$pkgname-$pkgver"
  make DESTDIR="$pkgdir" install
}