mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
24 lines
806 B
Bash
24 lines
806 B
Bash
# $Id: PKGBUILD 29435 2009-03-08 17:39:53Z jgc $
|
|
# Maintainer: Jan de Groot <jgc@archlinux.org>
|
|
|
|
pkgname=libgnomeprint
|
|
pkgver=2.18.6
|
|
pkgrel=1
|
|
pkgdesc="Printing routines for GNOME"
|
|
arch=(i686 x86_64)
|
|
license=('LGPL' 'GPL')
|
|
depends=('pango>=1.22.4' 'libart-lgpl>=2.3.20' 'libxml2>=2.7.3' 'libgnomecups>=0.2.3-4' 'heimdal>=1.2.1' 'gnutls>=2.6.4')
|
|
makedepends=('intltool' 'pkgconfig')
|
|
replaces=('libgnomeprint-cups')
|
|
conflicts=('libgnomeprint-cups')
|
|
url="http://www.gnome.org"
|
|
options=('!libtool')
|
|
source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/2.18/${pkgname}-${pkgver}.tar.bz2)
|
|
md5sums=('a5aa248058a07de4b3cf444673cfc683')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr --disable-static || return 1
|
|
make || return 1
|
|
make DESTDIR="${pkgdir}" install || return 1
|
|
}
|