CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
c0f6c80676668c1a2c1393e97ee4ad4ae78f2c6e
[ports/opt-arm64.git] / libtiff / Pkgfile
1 # Description: Library for manipulation of TIFF (Tag Image File Format) images
2 # URL: http://www.remotesensing.org/libtiff/
3 # Maintainer: Fredrik Rinnestam, fredrik at crux dot nu
4 # Arch Maintainer: CRUX-ARM System Team, devel at crux-arm dot nu
5 # Depends on: libjpeg-turbo, zlib
6
7 name=libtiff
8 version=4.3.0
9 release=1
10 source=(http://download.osgeo.org/libtiff/tiff-$version.tar.gz)
11
12 build() {
13 cd tiff-$version
14
15 ./configure --prefix=/usr \
16 --build=aarch64-unknown-linux-gnueabi
17 make
18 make DESTDIR=$PKG install
19 rm -r $PKG/usr/{bin,share/{doc,man/man1}}
20 }