Subversion Repository

Parent Directory Parent Directory | Revision Log Revision Log


Revision 720 - (show annotations)
Sun Oct 4 15:09:24 2009 UTC (3 years, 8 months ago) by cjg
File size: 538 byte(s)
importing opt
1 # Description: Library for manipulation of TIFF (Tag Image File Format) images
2 # URL: http://www.remotesensing.org/libtiff/
3 # Maintainer: Tilman Sauerbeck, tilman at crux dot nu
4 # Depends on: libjpeg, zlib
5
6 name=libtiff
7 version=3.8.2
8 release=2
9 source=(ftp://ftp.remotesensing.org/libtiff/tiff-$version.tar.gz \
10 $name-$version.patch)
11
12 build() {
13 cd tiff-$version
14 patch -p1 -i $SRC/$name-$version.patch
15 ./configure --prefix=/usr
16 make
17 make DESTDIR=$PKG install
18 rm -rf $PKG/usr/{bin,share,man/man1}
19 }