mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
23 lines
886 B
Bash
23 lines
886 B
Bash
# $Id: PKGBUILD 43608 2009-06-25 17:33:24Z andyrtr $
|
|
# Maintainer: Andreas Radke <andyrtr@archlinux.org>
|
|
# Contributor: Tom Newsom <Jeepster@gmx.co.uk>
|
|
|
|
# build order: foomatic-db / -filters / -db-engines / -db-hpijs / -db-nonfree
|
|
|
|
pkgname=foomatic-db-hpijs
|
|
pkgver=20090625
|
|
pkgrel=1
|
|
pkgdesc="Foomatic is a system for using free software printer drivers with common spoolers on Unix - Foomatic data for the HP's HPIJS printer drivers"
|
|
arch=(i686 x86_64)
|
|
license=('GPL')
|
|
depends=('perl' 'libxml2' "foomatic-db-engine>=4.0_$pkgver" 'foomatic-db')
|
|
source=(http://www.linuxprinting.org/download/foomatic/$pkgname-$pkgver.tar.gz)
|
|
url="http://www.linux-foundation.org/en/OpenPrinting/Database/Foomatic"
|
|
md5sums=('960286424363a84cf528e9a8d0fa4fb6')
|
|
|
|
build() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
./configure --prefix=/usr
|
|
make || return 1
|
|
make DESTDIR=${pkgdir} install || return 1
|
|
}
|