about summary refs log tree commit diff
path: root/pkgs/development/libraries/libtiff/builder.sh
blob: c237077c8b4400d3968ceb69b6e6fe2731c640a8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#! /bin/sh

buildinputs="$zlib $libjpeg"
. $stdenv/setup || exit 1

tar xvfz $src || exit 1
cd tiff-* || exit 1
./configure --prefix=$out --with-DIR_MAN=$out/man \
 --with-ZIP --with-JPEG \
 --with-DIRS_LIBINC="$zlib/include $libjpeg/include" || exit 1
make || exit 1
mkdir $out || exit 1
make install || exit 1
strip -S $out/lib/*.a || exit 1

echo "$zlib $libjpeg" > $out/propagated-build-inputs || exit 1