diff options
author | tnut <tnut at nutyx dot com> | 2012-04-03 20:48:19 +0200 |
---|---|---|
committer | tnut <tnut at nutyx dot com> | 2012-04-03 20:48:19 +0200 |
commit | a0c5d05b9a0238d365211b11f70994e697686e05 (patch) | |
tree | 341594d594599ffa97377687457ca64b822dac27 /libtiff/Pkgfile | |
parent | f0636ecbaad92e03e7db5aa5034ef4d6d06e4cc8 (diff) | |
download | nutyx-pakxe-a0c5d05b9a0238d365211b11f70994e697686e05.tar.gz nutyx-pakxe-a0c5d05b9a0238d365211b11f70994e697686e05.tar.bz2 nutyx-pakxe-a0c5d05b9a0238d365211b11f70994e697686e05.tar.xz nutyx-pakxe-a0c5d05b9a0238d365211b11f70994e697686e05.zip |
ajout dépendances
Diffstat (limited to 'libtiff/Pkgfile')
-rwxr-xr-x | libtiff/Pkgfile | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/libtiff/Pkgfile b/libtiff/Pkgfile new file mode 100755 index 000000000..f3a0cb966 --- /dev/null +++ b/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.9.4 +release=1 +source=(http://download.osgeo.org/libtiff/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 +} + |