diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2009-07-24 08:01:31 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2009-07-24 08:01:31 +0000 |
commit | b70981b68efcce5256eb11c6cd26ae123b10b6ea (patch) | |
tree | a38be6efae5e2ba15c2e839504632f9b7bfd5f91 /main/tiff/APKBUILD | |
parent | 2b4df81538b8398442d5296650905c70341dd8d3 (diff) | |
download | aports-b70981b68efcce5256eb11c6cd26ae123b10b6ea.tar.bz2 aports-b70981b68efcce5256eb11c6cd26ae123b10b6ea.tar.xz |
moved extra/* to main/
and fixed misc build issues
Diffstat (limited to 'main/tiff/APKBUILD')
-rw-r--r-- | main/tiff/APKBUILD | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/main/tiff/APKBUILD b/main/tiff/APKBUILD new file mode 100644 index 0000000000..c580a84a30 --- /dev/null +++ b/main/tiff/APKBUILD @@ -0,0 +1,26 @@ +# Contributor: Michael Mason <ms13sp@gmail.com> +# Maintainer: Michael Mason <ms13sp@gmail.com> +pkgname=tiff +pkgver=3.8.2 +pkgrel=0 +pkgdesc="Provides support for the Tag Image File Format or TIFF" +url="http://www.libtiff.org/" +license="GPL" +depends="uclibc" +subpackages="$pkgname-doc $pkgname-dev" +source="ftp://ftp.remotesensing.org/pub/lib$pkgname/$pkgname-$pkgver.tar.gz" + +build() { + cd "$srcdir/$pkgname-$pkgver" + + ./configure --prefix=/usr \ + --sysconfdir=/etc \ + --mandir=/usr/share/man \ + --infodir=/usr/share/info \ + --disable-cxx + make || return 1 + make DESTDIR="$pkgdir" install + +} + +md5sums="fbb6f446ea4ed18955e2714934e5b698 tiff-3.8.2.tar.gz" |