diff options
author | root <root@rshg054.dnsready.net> | 2012-01-19 23:15:04 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2012-01-19 23:15:04 +0000 |
commit | eefecc8813e0c062a2058b33209cb30830f824b6 (patch) | |
tree | f2dd237a65b4a8a3587da4cb6ac211ae6048911f /staging/libtiff | |
parent | 3e2075427791725d8e6a007feba107d94c017caf (diff) |
Thu Jan 19 23:15:03 UTC 2012
Diffstat (limited to 'staging/libtiff')
-rw-r--r-- | staging/libtiff/PKGBUILD | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/staging/libtiff/PKGBUILD b/staging/libtiff/PKGBUILD new file mode 100644 index 000000000..16d6dded5 --- /dev/null +++ b/staging/libtiff/PKGBUILD @@ -0,0 +1,33 @@ +# $Id: PKGBUILD 146823 2012-01-18 19:24:43Z eric $ +# Maintainer: Eric BĂ©langer <eric@archlinux.org> + +pkgname=libtiff +pkgver=4.0.0 +pkgrel=1 +pkgdesc="Library for manipulation of TIFF images" +arch=('i686' 'x86_64') +url="http://www.remotesensing.org/libtiff/" +license=('custom') +depends=('libjpeg' 'zlib' 'xz') +makedepends=('freeglut') +optdepends=('freeglut: for using tiffgt') +options=('!libtool') +source=(ftp://ftp.remotesensing.org/pub/libtiff/tiff-${pkgver}.tar.gz) +sha1sums=('85d85520fea40fc9291995a60e3d40cf980b5522') + +build() { + cd "${srcdir}/tiff-${pkgver}" + ./configure --prefix=/usr + make +} + +check() { + cd "${srcdir}/tiff-${pkgver}" + make check +} + +package() { + cd "${srcdir}/tiff-${pkgver}" + make DESTDIR="${pkgdir}" install + install -D -m644 COPYRIGHT "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" +} |