blob: c557abc05d018fa2a3fa06b3f7e2f9764de48cf1 (
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: Natanael Copa <ncopa@alpinelinux.org>
pkgname=libwmf
pkgver=0.2.8.4
pkgrel=4
pkgdesc="A library for reading vector images in Microsoft's native Windows Metafile Format (WMF)."
url="http://wvware.sourceforge.net/libwmf.html"
arch="all"
license="LGPL"
depends="ghostscript-fonts"
makedepends="libpng-dev>=1.4.0 freetype-dev jpeg-dev>=8 expat-dev"
install=
subpackages="$pkgname-dev"
source="https://downloads.sourceforge.net/sourceforge/wvware/$pkgname-$pkgver.tar.gz
libpng14.patch"
builddir="$srcdir"/$pkgname-$pkgver
prepare() {
default_prepare
update_config_guess
cd "$builddir"
sed -i -e 's/src include fonts doc/src include fonts/g' Makefile.in
}
build() {
cd "$builddir"
./configure --prefix=/usr \
--with-gsfontdir=/usr/share/fonts/Type1 \
--with-fontdir=/usr/share/fonts/Type1 \
--with-gsfontmap=/usr/share/ghostscript/8.15/lib/Fontmap.GS
make
}
package() {
cd "$builddir"
make -j1 DESTDIR="$pkgdir" install
# Remove fonts, these are in ghostscript-fonts
rm -rf "$pkgdir/usr/share/fonts"
}
sha512sums="d98df8e76a52245487b13e5ab3d2fbba9d246f97ee04a7344c0e5861bb2d0f990fc6d662dbd849ce621768b06eaebd4270fb34bec4ee004334a98b14ba6044a5 libwmf-0.2.8.4.tar.gz
804a43fa37928a91a477cfc875e80b55ebfcb6682cc12e661ca70006df8c4326e2ecf8ce3ffefbee465597bf47abbbfe7762981205a366aac32a43e1e9e1da7b libpng14.patch"
|