blob: 43b363efcc56d8093273f7f9f21f6fb0dde3b1ad (
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
|
# Maintainer: dreieck (https://aur.archlinux.org/account/dreieck)
_gitname="plutosvg"
_pkgname="${_gitname}"
pkgname="${_pkgname}-git"
pkgver=0.0.4.r95.20241226.e0a1ce5
pkgrel=5
pkgdesc="A compact and efficient SVG rendering library written in C."
arch=(
'x86_64'
'i686'
'aarch64'
'armv6h'
'armv7h'
)
_githost='github.com'
_gituser='sammycage'
url="https://${_githost}/${_gituser}/${_gitname}"
license=("MIT")
depends=(
'glibc'
)
makedepends=(
'freetype2'
'git'
'plutovg'
)
optdepends=(
"freetype2: For Freetype integration, and for example '/usr/bin/emoji2png'."
)
checkdepends=()
provides=(
"${_pkgname}=${pkgver}"
)
conflicts=(
"${_pkgname}"
)
source=(
"${_pkgname}::git+https://${_githost}/${_gituser}/${_gitname}.git"
)
sha256sums=(
'SKIP'
)
options+=('!lto') # Otherwise build of software depending on this likely throws linking errors.
prepare() {
cd "${srcdir}/${_pkgname}"
git log > "${srcdir}/git.log"
}
pkgver() {
cd "${srcdir}/${_pkgname}"
_ver="$(git describe --tags | sed -E -e 's|^[vV]||' -e 's|\-g[0-9a-f]*$||' | tr '-' '+')"
_rev="$(git rev-list --count HEAD)"
_date="$(git log -1 --date=format:"%Y%m%d" --format="%ad")"
_hash="$(git rev-parse --short HEAD)"
if [ -z "${_ver}" ]; then
error "Version could not be determined."
return 1
else
printf '%s' "${_ver}.r${_rev}.${_date}.${_hash}"
fi
}
build() {
cd "${srcdir}"
cmake -S "${_pkgname}" -B build \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr \
-DFETCHCONTENT_FULLY_DISCONNECTED=ON \
-DFETCHCONTENT_QUIET=OFF \
-DFETCHCONTENT_UPDATES_DISCONNECTED=ON \
-DPLUTOSVG_BUILD_EXAMPLES=ON \
-DPLUTOSVG_ENABLE_FREETYPE=ON \
-Dplutovg_DIR=/usr/lib/cmake/plutovg \
-DCMAKE_VERBOSE_MAKEFILE=ON
make -C build
}
package() {
cd "${srcdir}"
make -C build DESTDIR="${pkgdir}" install
for _exampleexecutable in emoji2png svg2png; do
install -Dvm755 "build/examples/${_exampleexecutable}" "${pkgdir}/usr/bin/${_exampleexecutable}-plutosvg"
done
make -C build/examples clean # Remove built executable in examples directory.
_docfiles=(
"${srcdir}/git.log"
"${srcdir}/${_pkgname}/README.md"
)
_docdirs=(
"${srcdir}/build/examples"
)
_manfiles=()
_infofiles=()
_licensefiles=(
"${srcdir}/${_pkgname}/LICENSE"
)
printf '%s\n' " --> installing documentation ..."
for _docfile in "${_docfiles[@]}"; do
install -D -v -m644 "${_docfile}" "${pkgdir}/usr/share/doc/${_pkgname}/$(basename "${_docfile}")"
done
for _docdir in "${_docdirs[@]}"; do
cp -rv "${_docdir}" "${pkgdir}/usr/share/doc/${_pkgname}/$(basename "${_docdir}")"
done
for _manfile in "${_manfiles[@]}"; do
_section="$(basename "${_manfile}" .gz | sed -E -e 's|^.*\.([^.]*)$|\1|')"
install -D -v -m644 "docs/build/man/${_manfile}" "${pkgdir}/usr/share/man/man${_section}/$(basename "${_manfile}")"
done
for _infofile in "${_infofiles[@]}"; do
install -D -v -m644 "${_infofile}" "${pkgdir}/usr/share/info/$(basename "${_infofile}")"
done
printf '%s\n' " --> installing license ..."
for _licensefile in "${_licensefiles[@]}"; do
install -D -v -m644 "${_licensefile}" "${pkgdir}/usr/share/licenses/${pkgname}/$(basename "${_licensefile}")"
ln -svr "${pkgdir}/usr/share/licenses/${pkgname}/$(basename "${_licensefile}")" "${pkgdir}/usr/share/doc/${_pkgname}/$(basename "${_licensefile}")"
done
}
|