CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
Major update for Arch-Maintainer's email (all ports)
[attic/ports/opt-cross.git] / libtiff / Pkgfile
CommitLineData
e7fcd379
VM
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
6b985c9b 4# Arch Maintainer: CRUX-ARM System Team, devel@crux-arm.nu
e7fcd379
VM
5# Depends on: libjpeg zlib
6
7name=libtiff
8version=3.8.2
9release=2
10source=(ftp://ftp.remotesensing.org/libtiff/tiff-$version.tar.gz \
11 $name-$version.patch)
12
13build() {
14 cd tiff-$version
15 patch -p1 -i $SRC/$name-$version.patch
16 ./configure --build=$CHOST \
17 --host=$CTARGET \
18 --prefix=/usr
19 make
20 make DESTDIR=$PKG install
21 rm -rf $PKG/usr/{bin,share,man/man1}
22}