mirror of
https://github.com/void-linux/void-packages.git
synced 2025-10-10 04:25:18 +02:00
32 lines
858 B
Bash
32 lines
858 B
Bash
# Template file for 'libgdiplus'
|
|
pkgname=libgdiplus
|
|
version=6.2
|
|
revision=1
|
|
build_style=gnu-configure
|
|
hostmakedepends="pkg-config automake libtool"
|
|
makedepends="tiff-devel cairo-devel giflib-devel glib-devel libexif-devel
|
|
libpng-devel"
|
|
short_desc="Open Source Implementation of the GDI+ API"
|
|
maintainer="Helmut Pozimski <helmut@pozimski.eu>"
|
|
license="MIT"
|
|
homepage="http://www.mono-project.com/"
|
|
distfiles="https://dl.winehq.org/mono/sources/libgdiplus/libgdiplus-${version}.tar.gz"
|
|
checksum=683adb7d99d03f6ee7985173a206a2243f76632682334ced4cae2fcd20c83bc9
|
|
|
|
pre_configure() {
|
|
autoreconf -fiv
|
|
}
|
|
|
|
post_install() {
|
|
vlicense LICENSE
|
|
}
|
|
|
|
libgdiplus-devel_package() {
|
|
short_desc+=" - development files"
|
|
depends="${sourcepkg}>=${version}_${revision}"
|
|
pkg_install() {
|
|
# the .so symlink is needed at runtime
|
|
vmove "usr/lib/*.a"
|
|
vmove usr/lib/pkgconfig
|
|
}
|
|
}
|