blob: 82499a4b662d6469e52f6d8100a1eadd5b0d7250 (
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
|
# Maintainer: Philipp A. <flying-sheep@web.de>
# Contributor: Caleb Maclennan <caleb@alerque.com>
pkgname=resvg
pkgver=0.44.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'
'kio5: For the dolphin thumbnailer'
)
makedepends=(cargo clang qt5-base qt5-tools kio5 cairo pango cmake extra-cmake-modules)
source=("$url/archive/v$pkgver/$pkgname-$pkgver.tar.gz")
sha256sums=('b45c906b4c72ff46405d74eb98ec1b93842f1528a8e835860f22b057b210306a')
prepare() {
cd "$pkgname-$pkgver"
cargo fetch --locked --target "$CARCH-unknown-linux-gnu"
mkdir -p tools/kde-dolphin-thumbnailer/build
}
build() {
cd "$pkgname-$pkgver"
export RUSTUP_TOOLCHAIN=stable
export CARGO_TARGET_DIR=target
cargo build --workspace --frozen --release --all-features
(
cd tools/viewsvg
qmake PREFIX="$pkgdir/usr"
make
)
(
cd tools/kde-dolphin-thumbnailer/build
cmake .. \
-Wno-dev \
-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
)
cargo doc --release --no-deps -p resvg-capi
}
check() {
cd "$pkgname-$pkgver"
export RUSTUP_TOOLCHAIN=stable
cargo test --frozen --all-features
}
package() {
cd "$pkgname-$pkgver"
install -Dm755 -t "$pkgdir/usr/bin/" target/release/{resvg,usvg} tools/viewsvg/viewsvg
make -C tools/kde-dolphin-thumbnailer/build install
install -Dm755 -t "$pkgdir/usr/lib/" target/release/libresvg.so
install -Dm644 -t "$pkgdir/usr/include/" crates/c-api/*.h
install -d "$pkgdir/usr/share/doc/resvg"
cp -r target/doc/* "$pkgdir/usr/share/doc/resvg"
}
|