mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-02-05 07:52:26 +01:00
33 lines
831 B
Plaintext
33 lines
831 B
Plaintext
# Contributor: Carlo Landmeter <clandmeter@gmail.com>
|
|
# Maintainer:
|
|
pkgname=libgdiplus
|
|
pkgver=6.0.2
|
|
pkgrel=0
|
|
pkgdesc="An Open Source Implementation of the GDI+ API"
|
|
url="https://www.mono-project.com/"
|
|
arch="all"
|
|
license="MIT"
|
|
depends_dev="tiff-dev cairo-dev libexif-dev glib-dev"
|
|
makedepends="$depends_dev"
|
|
subpackages="$pkgname-dev"
|
|
source="https://download.mono-project.com/sources/libgdiplus/libgdiplus-$pkgver.tar.gz"
|
|
|
|
|
|
build() {
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--mandir=/usr/share/man \
|
|
--infodir=/usr/share/info \
|
|
--localstatedir=/var
|
|
make
|
|
}
|
|
|
|
package() {
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|
|
sha512sums="b334846cf9471e6f81a3e0a2d6b68c9a39f52e6b22833432e34d3823ae12e3aa9d481806ea9a078463a77f56f3265633447d6709c5ade86ea117d3690f16472c libgdiplus-6.0.2.tar.gz"
|