blob: b746581ccd226653bad2c78352083a9d6c7c84ef (
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
31
32
33
34
35
36
37
38
39
40
41
42
43
|
# Maintainer: Peter Mattern <pmattern at arcor dot de>
_pkgname=libcupsfilters
pkgname=$_pkgname-git
pkgver=2.0.0.r18.g980f6f49
pkgrel=1
pkgdesc="Code of the filters of the former cups-filters package as library functions"
arch=(x86_64)
url="https://github.com/OpenPrinting/$_pkgname"
license=('Apache-2.0')
depends=('libcups-git' 'poppler' 'qpdf' 'lcms2' 'libjpeg-turbo' 'libpng' 'libtiff' 'libexif' 'fontconfig')
makedepends=('git' 'ghostscript' 'mupdf-tools')
checkdepends=('ttf-dejavu')
provides=("${_pkgname}")
conflicts=("${_pkgname}")
source=("git+${url}.git")
sha256sums=('SKIP')
pkgver() {
cd ${_pkgname}
git describe --always --tags | sed 's|-|.r|;s|-|.|'
}
prepare() {
cd ${_pkgname}
./autogen.sh
./configure --prefix=/usr
}
build() {
cd ${_pkgname}
make
}
check() {
cd ${_pkgname}
make check
}
package() {
cd ${_pkgname}
make DESTDIR="$pkgdir/" install
}
|