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