diff options
author | tnut <thierryn1 at hispeed dot ch> | 2011-02-01 22:21:51 +0100 |
---|---|---|
committer | tnut <thierryn1 at hispeed dot ch> | 2011-02-01 22:21:51 +0100 |
commit | aa25385dad5167e4265ce352324302e6206bef32 (patch) | |
tree | 7209229ddf14fb245db5ff5f3ceb0fe7c8911c7b /base/libtiff/Pkgfile | |
parent | f7e41b1fe20b4efc95b33c4848721b4167b0e5b8 (diff) | |
download | nutyx-extra-aa25385dad5167e4265ce352324302e6206bef32.tar.gz nutyx-extra-aa25385dad5167e4265ce352324302e6206bef32.tar.bz2 nutyx-extra-aa25385dad5167e4265ce352324302e6206bef32.tar.xz nutyx-extra-aa25385dad5167e4265ce352324302e6206bef32.zip |
libtiff dans base pas de deps
Diffstat (limited to 'base/libtiff/Pkgfile')
-rwxr-xr-x | base/libtiff/Pkgfile | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/base/libtiff/Pkgfile b/base/libtiff/Pkgfile new file mode 100755 index 000000000..1a9f42c27 --- /dev/null +++ b/base/libtiff/Pkgfile @@ -0,0 +1,22 @@ +# Description: Librairie pour le support des fichiers Tag Image Format +# URL: http://www.remotesensing.org/libtiff/ +# Maintainer: NuTyX core team +# Packager: thierryn1 at hispeed dot ch + +name=libtiff +version=3.8.2 +release=1 +source=( http://libtiff.maptools.org/dl/tiff-$version.tar.gz) + + +build() { + cd tiff-$version + ./configure --prefix=/usr \ + --mandir=/usr/share/man \ + --infodir=/usr/share/info \ + --disable-debug + make + make DESTDIR=$PKG install + rm -rf $PKG/usr/share/doc +} + |