summaryrefslogtreecommitdiff
path: root/community/c++-gtk-utils/PKGBUILD
blob: de311fb372a2980fa99bbeb83b00e5e1af6d565a (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
28
29
# $Id: PKGBUILD 85715 2013-03-05 15:34:23Z giovanni $
# Maintainer: Giovanni Scafora <giovanni@archlinux.org>

pkgname=c++-gtk-utils
pkgver=2.0.15
pkgrel=1
pkgdesc="Classes and functions for programming in GTK+"
arch=('i686' 'x86_64')
url="http://cxx-gtk-utils.sourceforge.net/"
license=('LGPL2.1')
depends=('gtk3')
options=('!libtool' '!docs' '!emptydirs')
source=("http://downloads.sourceforge.net/project/cxx-gtk-utils/cxx-gtk-utils/${pkgver}/${pkgname}-${pkgver}.tar.gz")
md5sums=('b9de1eb63916d167effa76b6e7b180f3')

build() {
  cd "${srcdir}/${pkgname}-${pkgver}"

  ./configure --prefix=/usr \
              --disable-rpath \
              --disable-static
  make
}

package() {
  cd "${srcdir}/${pkgname}-${pkgver}"

  make DESTDIR="${pkgdir}" install
}