diff options
author | Mark Riedesel <mark@klowner.com> | 2016-08-29 13:15:22 -0500 |
---|---|---|
committer | Jakub Jirutka <jakub@jirutka.cz> | 2016-08-30 11:23:01 +0200 |
commit | 842d5797884bd4c753eae4685115ecf2c397073a (patch) | |
tree | 89cb003dae2051af96f33be999790d5d5e6d1161 /community/ilmbase | |
parent | 0a8bfd74b226c610962d54f5969b923ef6adc556 (diff) | |
download | aports-842d5797884bd4c753eae4685115ecf2c397073a.tar.bz2 aports-842d5797884bd4c753eae4685115ecf2c397073a.tar.xz |
community/ilmbase: move from testing
Diffstat (limited to 'community/ilmbase')
-rw-r--r-- | community/ilmbase/APKBUILD | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/community/ilmbase/APKBUILD b/community/ilmbase/APKBUILD new file mode 100644 index 0000000000..2d8973749d --- /dev/null +++ b/community/ilmbase/APKBUILD @@ -0,0 +1,41 @@ +# Contributor: Sören Tempel <soeren+alpine@soeren-tempel.net> +# Maintainer: Mark Riedesel <mark+alpine@klowner.com> +pkgname=ilmbase +pkgver=2.2.0 +pkgrel=1 +pkgdesc="Base libraries from ILM for OpenEXR" +url="http://www.openexr.com" +arch="all" +license="BSD" +depends="" +makedepends="bash linux-headers" +subpackages="$pkgname-dev" +source="http://download.savannah.nongnu.org/releases/openexr/$pkgname-$pkgver.tar.gz" +builddir="$srcdir/$pkgname-$pkgver" + +prepare() { + default_prepare || return 1 + update_config_sub || return 1 +} + +build() { + cd "$builddir" + ./configure \ + --build=$CBUILD \ + --host=$CHOST \ + --prefix=/usr \ + --sysconfdir=/etc \ + --mandir=/usr/share/man \ + --localstatedir=/var \ + || return 1 + make || return 1 +} + +package() { + make DESTDIR="$pkgdir" \ + -C "$builddir" install || return 1 +} + +md5sums="b540db502c5fa42078249f43d18a4652 ilmbase-2.2.0.tar.gz" +sha256sums="ecf815b60695555c1fbc73679e84c7c9902f4e8faa6e8000d2f905b8b86cedc7 ilmbase-2.2.0.tar.gz" +sha512sums="0bbad14ed2bd286dff3987b16ef8631470211da54f822cb3e29b7931807216845ded81c9bf41fd2d22a8b362e8b9904a5450f61f5a242e460083e86b846513f1 ilmbase-2.2.0.tar.gz" |