core/ijs/PKGBUILD

29 lines
717 B
Bash
Raw Normal View History

2017-03-04 04:05:05 +08:00
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=('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
}