blob: 668e1dc558ab2f38ac71e5bf01c4afe381d108d0 (
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
|
# Maintainer: Daniel Bermond <dbermond@archlinux.org>
pkgname=pstoedit-nomagick
pkgver=4.02
pkgrel=1
pkgdesc='Translates PS/PDF graphics to other vector formats (no ImageMagick dependency)'
arch=('x86_64')
url='http://www.pstoedit.net/'
license=('GPL-2.0-or-later')
depends=('gd' 'ghostscript' 'ming' 'libemf' 'libzip' 'plotutils' 'zlib')
provides=('pstoedit')
conflicts=('pstoedit')
source=("https://sourceforge.net/projects/pstoedit/files/pstoedit/${pkgver}/pstoedit-${pkgver}.tar.gz")
sha256sums=('5588b432d2c6b2ad9828b44915ea5813ff9a3a3312a41fa0de4c38ddac9df72f')
build() {
cd "pstoedit-${pkgver}"
./configure \
--prefix='/usr'\
--enable-static='no' \
--enable-shared='yes' \
--with-emf \
--without-magick \
--with-libplot \
--with-swf \
--with-pptx
make
}
check() {
make -C "pstoedit-${pkgver}" check
}
package() {
make -C "pstoedit-${pkgver}" DESTDIR="$pkgdir" install
}
|