diff graphics/libtiff/libtiff.sh @ 338:b408f1c4945e

graphics/libtiff: initial import, closes #1428
author David Demelier <markand@malikania.fr>
date Wed, 27 Mar 2019 20:30:00 +0100
parents
children 7828241c9634
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/graphics/libtiff/libtiff.sh	Wed Mar 27 20:30:00 2019 +0100
@@ -0,0 +1,96 @@
+#!/bin/sh
+#
+# Copyright (c) 2019 David Demelier <markand@malikania.fr>
+#
+# Permission to use, copy, modify, and/or distribute this software for any
+# purpose with or without fee is hereby granted, provided that the above
+# copyright notice and this permission notice appear in all copies.
+#
+# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+#
+
+PKGNAME=libtiff
+PKGVERSION=4.0.10
+PKGREVISION=1
+PKGLICENSE="one of README.licenses.md or CUSTOM"
+PKGSUMMARY="short summary"
+PKGDOWNLOAD="https://download.osgeo.org/$PKGNAME/tiff-$PKGVERSION.tar.gz"
+PKGOPTIONS="JPEG LZMA ZLIB ZSTD"
+
+: ${CHOST:=$(uname -m)-linux-musl}
+: ${CBUILD:=$(uname -m)-linux-musl}
+: ${CC:=gcc}
+: ${CFLAGS:=-O2}
+: ${CXX:=g++}
+: ${CXXFLAGS:=-O2}
+: ${LDFLAGS:=}
+: ${LIBS:=}
+: ${JPEG:=yes}
+: ${LZMA:=yes}
+: ${ZLIB:=yes}
+: ${ZSTD:=yes}
+
+if [ "$JPEG" = "yes" ]; then
+	PKGDEPENDS="graphics/libjpeg-turbo $PKGDEPENDS"
+	with_jpeg="--enable-jpeg"
+else
+	with_jpeg="--disable-jpeg"
+fi
+
+if [ "$LZMA" = "yes" ]; then
+	PKGDEPENDS="core/xz $PKGDEPENDS"
+	with_lzma="--enable-lzma"
+else
+	with_lzma="--disable-lzma"
+fi
+
+if [ "$ZLIB" = "yes" ]; then
+	PKGDEPENDS="lib/zlib $PKGDEPENDS"
+	with_zlib="--enable-zlib"
+else
+	with_zlib="--disable-zlib"
+fi
+
+if [ "$ZSTD" = "yes" ]; then
+	PKGDEPENDS="lib/zstd $PKGDEPENDS"
+	with_zstd="--enable-zstd"
+else
+	with_zstd="--disable-zstd"
+fi
+
+build()
+{
+	rm -rf tiff-$PKGVERSION
+	tar xvaf tiff-$PKGVERSION.tar.gz
+	pushd tiff-$PKGVERSION
+
+	CC="$CC" \
+	CFLAGS="$CFLAGS" \
+	CXX="$CXX" \
+	CXXFLAGS="$CXXFLAGS" \
+	LDFLAGS="$LDFLAGS" \
+	LIBS="$LIBS" \
+	./configure \
+		--build=$CBUILD \
+		--host=$CHOST \
+		--prefix=/usr \
+		--with-docdir=/usr/share/doc/libtiff \
+		--disable-static \
+		--enable-shared \
+		$with_jpeg \
+		$with_lzma \
+		$with_zlib \
+		$with_zstd
+	make
+	make install DESTDIR=$DESTDIR
+	rm -f $DESTDIR/usr/lib/libtiff{,xx}.la
+
+	popd
+	rm -rf tiff-$PKGVERSION
+}