blob: 282e956f32707d9c58b9c7aed263138e30d0b7cd (
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
# Maintainer: Philipp A. <flying-sheep@web.de>
pkgname=resvg
pkgver=0.9.0
pkgrel=1
pkgdesc='SVG rendering library and CLI'
arch=(i686 x86_64)
url="https://github.com/RazrFalcon/$pkgname"
license=(MPL2)
depends=(gdk-pixbuf2)
optdepends=(
'qt5-base: For the Qt backend'
'cairo: For the cairo backend'
'kio: For the dolphin thumbnailer'
)
makedepends=(cargo qt5-base qt5-tools kio cairo pango cmake extra-cmake-modules)
source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
sha256sums=('8da2c0463cb76ab2a75c597be9f83384daf27a2d6162b95310b8f68763dfcc47')
build() {
cd "$pkgname-$pkgver"
for dir in capi tools/{render,u}svg; do
(
msg2 "Building $dir"
cd "$dir"
if grep -q cairo-backend Cargo.toml; then
cargo build --release --features='qt-backend cairo-backend'
else
cargo build --release
fi
)
done
(
msg2 "Building tools/viewsvg"
cd tools/viewsvg
qmake PREFIX="$pkgdir/usr"
make
)
(
msg2 "Building tools/kde-dolphin-thumbnailer"
cd tools/kde-dolphin-thumbnailer
mkdir -p build
cd build
cmake .. \
-DCMAKE_CXX_FLAGS="-L../../../target/release" \
-DCMAKE_INSTALL_PREFIX="$pkgdir/$(qtpaths --install-prefix)" \
-DQT_PLUGIN_INSTALL_DIR="$pkgdir/$(qtpaths --plugin-dir)" \
-DCMAKE_BUILD_TYPE=Release
make
)
msg2 'Building docs'
cargo doc --release --no-deps -p resvg-capi
}
package() {
cd "$pkgname-$pkgver"
for tool in {render,u}svg; do
install -Dm755 target/release/$tool "$pkgdir/usr/bin/$tool"
done
install -Dm755 tools/viewsvg/viewsvg "$pkgdir/usr/bin/viewsvg"
(
cd tools/kde-dolphin-thumbnailer/build
make install
)
install -Dm755 target/release/libresvg.so "$pkgdir/usr/lib/libresvg.so"
install -Dm644 capi/include/resvg.h "$pkgdir/usr/include/resvg.h"
install -d "$pkgdir/usr/share/doc/resvg"
cp -r target/doc/* "$pkgdir/usr/share/doc/resvg"
}
|