blob: 19ab8212da619aee008c4a0cc700afd343f0a393 (
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
30
|
# $Id$
# Maintainer: Andreas Radke <andyrtr@archlinux.org>
pkgname=ijs
pkgver=0.35
pkgrel=1
pkgdesc="a library which implements a protocol for transmission of raster page images"
arch=('x86_64')
url="https://www.openprinting.org/download/ijs/"
license=('GPL')
depends=('glibc' 'sh')
makedepends=('docbook-utils' 'ghostscript')
source=("https://www.openprinting.org/download/ijs/download/ijs-$pkgver.tar.bz2")
md5sums=('896fdcb7a01c586ba6eb81398ea3f6e9')
build() {
cd "$pkgname-$pkgver"
./configure --prefix=/usr \
--disable-static \
--enable-shared \
--mandir=/usr/share/man
make
}
package() {
cd "$pkgname-$pkgver"
make DESTDIR="$pkgdir/" install
# install doc
install -Dm644 ijs_spec.pdf ${pkgdir}/usr/share/doc/$pkgname/ijs_spec.pdf
}
|