summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 9d71fd342d56ea8b4e8cde8b62f6d21855770bb7 (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
# Maintainer: Alexander Rødseth <rodseth@gmail.com>
# Contributor: Jan de Groot <jgc@archlinux.org>

pkgname=libgnomeprintui
pkgver=2.18.6
pkgrel=5
pkgdesc='User interface library for printing with GNOME'
arch=('x86_64' 'i686')
license=('GPL' 'LGPL')
depends=('libgnomeprint>=2.18.8' 'libgnomecanvas>=2.30.2' 'gnome-icon-theme')
makedepends=('intltool')
options=('!libtool')
url='http://www.gnome.org/'
source=("http://ftp.gnome.org/pub/gnome/sources/$pkgname/2.18/$pkgname-$pkgver.tar.bz2")
sha256sums=('156ae5b66e5dcc546efa2449048f792d76c55b30d93a9b67b0c69665e346f46a')

build() {
  cd "$pkgname-$pkgver"

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

package() {
  make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
}

# vim:set ts=2 sw=2 et: