mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
24 lines
716 B
Bash
24 lines
716 B
Bash
|
# $Id: PKGBUILD 20506 2008-12-05 11:59:02Z allan $
|
||
|
# Maintainer: Jan de Groot <jgc@archlinux.org>
|
||
|
# Contributor: Paulius Palevicius <paulius@birzai.com>
|
||
|
|
||
|
pkgname=libgnomecups
|
||
|
pkgver=0.2.3
|
||
|
pkgrel=4
|
||
|
pkgdesc="GNOME cups library"
|
||
|
arch=(i686 x86_64)
|
||
|
license=('LGPL' 'GPL')
|
||
|
url="http://www.gnome.org"
|
||
|
depends=('libcups>=1.3.8-2' 'glib2>=2.16.4' 'heimdal>=1.2' 'gnutls>=2.4.1')
|
||
|
makedepends=('perlxml')
|
||
|
options=(!libtool)
|
||
|
source=(http://ftp.gnome.org/pub/GNOME/sources/${pkgname}/0.2/${pkgname}-${pkgver}.tar.bz2)
|
||
|
md5sums=('dc4920c15c9f886f73ea74fbff0ae48b')
|
||
|
|
||
|
build() {
|
||
|
cd ${startdir}/src/${pkgname}-${pkgver}
|
||
|
./configure --prefix=/usr || return 1
|
||
|
make || return 1
|
||
|
make DESTDIR=${startdir}/pkg install || return 1
|
||
|
}
|