From 21b6e4fe9a203dc7b8e8b4af0f22ab39d2ff296b Mon Sep 17 00:00:00 2001 From: Danny Rawlins Date: Fri, 23 Dec 2011 16:37:01 +1100 Subject: [PATCH] jasper: romster -> contrib --- jasper/.footprint | 39 +++++++++++++++++++++++++++++++++++++++ jasper/.md5sum | 1 + jasper/Pkgfile | 21 +++++++++++++++++++++ 3 files changed, 61 insertions(+) create mode 100644 jasper/.footprint create mode 100644 jasper/.md5sum create mode 100644 jasper/Pkgfile diff --git a/jasper/.footprint b/jasper/.footprint new file mode 100644 index 000000000..cf6a7a31b --- /dev/null +++ b/jasper/.footprint @@ -0,0 +1,39 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/imgcmp +-rwxr-xr-x root/root usr/bin/imginfo +-rwxr-xr-x root/root usr/bin/jasper +-rwxr-xr-x root/root usr/bin/tmrdemo +drwxr-xr-x root/root usr/include/ +drwxr-xr-x root/root usr/include/jasper/ +-rw-r--r-- root/root usr/include/jasper/jas_cm.h +-rw-r--r-- root/root usr/include/jasper/jas_config.h +-rw-r--r-- root/root usr/include/jasper/jas_config2.h +-rw-r--r-- root/root usr/include/jasper/jas_debug.h +-rw-r--r-- root/root usr/include/jasper/jas_fix.h +-rw-r--r-- root/root usr/include/jasper/jas_getopt.h +-rw-r--r-- root/root usr/include/jasper/jas_icc.h +-rw-r--r-- root/root usr/include/jasper/jas_image.h +-rw-r--r-- root/root usr/include/jasper/jas_init.h +-rw-r--r-- root/root usr/include/jasper/jas_malloc.h +-rw-r--r-- root/root usr/include/jasper/jas_math.h +-rw-r--r-- root/root usr/include/jasper/jas_seq.h +-rw-r--r-- root/root usr/include/jasper/jas_stream.h +-rw-r--r-- root/root usr/include/jasper/jas_string.h +-rw-r--r-- root/root usr/include/jasper/jas_tmr.h +-rw-r--r-- root/root usr/include/jasper/jas_tvp.h +-rw-r--r-- root/root usr/include/jasper/jas_types.h +-rw-r--r-- root/root usr/include/jasper/jas_version.h +-rw-r--r-- root/root usr/include/jasper/jasper.h +drwxr-xr-x root/root usr/lib/ +-rw-r--r-- root/root usr/lib/libjasper.a +-rwxr-xr-x root/root usr/lib/libjasper.la +lrwxrwxrwx root/root usr/lib/libjasper.so -> libjasper.so.1.0.0 +lrwxrwxrwx root/root usr/lib/libjasper.so.1 -> libjasper.so.1.0.0 +-rwxr-xr-x root/root usr/lib/libjasper.so.1.0.0 +drwxr-xr-x root/root usr/man/ +drwxr-xr-x root/root usr/man/man1/ +-rw-r--r-- root/root usr/man/man1/imgcmp.1.gz +-rw-r--r-- root/root usr/man/man1/imginfo.1.gz +-rw-r--r-- root/root usr/man/man1/jasper.1.gz +-rw-r--r-- root/root usr/man/man1/jiv.1.gz diff --git a/jasper/.md5sum b/jasper/.md5sum new file mode 100644 index 000000000..5b418e104 --- /dev/null +++ b/jasper/.md5sum @@ -0,0 +1 @@ +a342b2b4495b3e1394e161eb5d85d754 jasper-1.900.1.zip diff --git a/jasper/Pkgfile b/jasper/Pkgfile new file mode 100644 index 000000000..a1e7596aa --- /dev/null +++ b/jasper/Pkgfile @@ -0,0 +1,21 @@ +# Description: Codec JPEG-2000 Part-1 standard. +# URL: http://www.ece.uvic.ca/~mdadams/jasper/ +# Maintainer: Danny Rawlins, monster dot romster at gmail dot com +# Packager: Danny Rawlins, ronster dot romster at gmail dot com +# Depends on: freeglut libjpeg + +name=jasper +version=1.900.1 +release=1 +source=(http://www.ece.uvic.ca/~mdadams/jasper/software/jasper-$version.zip) + +build() { + cd jasper-$version + + ./configure \ + --prefix=/usr \ + --enable-shared + + make + make DESTDIR=$PKG install +}