c51178396b
No need for any revbumps, this release is ABI compatible.
33 lines
910 B
Bash
33 lines
910 B
Bash
# Template file for 'fcft'
|
|
pkgname=fcft
|
|
version=2.2.3
|
|
revision=1
|
|
wrksrc=$pkgname
|
|
build_style=meson
|
|
hostmakedepends="pkg-config scdoc"
|
|
makedepends="fontconfig-devel freetype-devel pixman-devel tllist"
|
|
short_desc="Simple library for font loading and glyph rasterization"
|
|
maintainer="Isaac Freund <ifreund@ifreund.xyz>"
|
|
license="MIT"
|
|
homepage="https://codeberg.org/dnkl/fcft"
|
|
distfiles="${homepage}/archive/${version}.tar.gz"
|
|
checksum=be6b44a84f798c15a4e903dd7579b7468b79c8928c73f4c29dd4d1b6e94bb4e2
|
|
|
|
post_install() {
|
|
vlicense LICENSE
|
|
}
|
|
|
|
fcft-devel_package() {
|
|
depends="${sourcepkg}>=${version}_${revision} ${makedepends}"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/pkgconfig
|
|
vmove "usr/lib/*.so"
|
|
vmove usr/share/doc
|
|
vmove usr/share/man/man3
|
|
|
|
# The license is already installed by the base package
|
|
rm ${PKGDESTDIR}/usr/share/doc/${sourcepkg}/LICENSE
|
|
}
|
|
}
|