summaryrefslogtreecommitdiffstats
path: root/base
diff options
context:
space:
mode:
authortnut <thierryn1 at hispeed dot ch>2010-01-09 10:48:32 +0100
committertnut <thierryn1 at hispeed dot ch>2010-01-09 10:48:32 +0100
commitff91b88803760a6ed3f4e7aa44d81a903539963f (patch)
tree9bea8d450b2975855fb323b994297492c375518f /base
parente5aa17e610438f876c618ba7fad2821b8d60f379 (diff)
downloadnutyx-extra-ff91b88803760a6ed3f4e7aa44d81a903539963f.tar.gz
nutyx-extra-ff91b88803760a6ed3f4e7aa44d81a903539963f.tar.bz2
nutyx-extra-ff91b88803760a6ed3f4e7aa44d81a903539963f.tar.xz
nutyx-extra-ff91b88803760a6ed3f4e7aa44d81a903539963f.zip
libjpeg, déplacé dans base
Diffstat (limited to 'base')
-rw-r--r--base/libjpeg/.footprint27
-rw-r--r--base/libjpeg/.md5sum1
-rwxr-xr-xbase/libjpeg/Pkgfile24
3 files changed, 52 insertions, 0 deletions
diff --git a/base/libjpeg/.footprint b/base/libjpeg/.footprint
new file mode 100644
index 000000000..818bc8230
--- /dev/null
+++ b/base/libjpeg/.footprint
@@ -0,0 +1,27 @@
+drwxr-xr-x root/root usr/
+drwxr-xr-x root/root usr/bin/
+-rwxr-xr-x root/root usr/bin/cjpeg
+-rwxr-xr-x root/root usr/bin/djpeg
+-rwxr-xr-x root/root usr/bin/jpegtran
+-rwxr-xr-x root/root usr/bin/rdjpgcom
+-rwxr-xr-x root/root usr/bin/wrjpgcom
+drwxr-xr-x root/root usr/include/
+-rw-r--r-- root/root usr/include/jconfig.h
+-rw-r--r-- root/root usr/include/jerror.h
+-rw-r--r-- root/root usr/include/jmorecfg.h
+-rw-r--r-- root/root usr/include/jpeglib.h
+drwxr-xr-x root/root usr/lib/
+-rw-r--r-- root/root usr/lib/libjpeg.a
+-rwxr-xr-x root/root usr/lib/libjpeg.la
+lrwxrwxrwx root/root usr/lib/libjpeg.so -> libjpeg.so.7.0.0
+lrwxrwxrwx root/root usr/lib/libjpeg.so.7 -> libjpeg.so.7.0.0
+-rwxr-xr-x root/root usr/lib/libjpeg.so.7.0.0
+drwxr-xr-x root/root usr/share/
+drwxr-xr-x root/root usr/share/man/
+drwxr-xr-x root/root usr/share/man/man1/
+drwxr-xr-x root/root usr/share/man/man1/man1/
+-rw-r--r-- root/root usr/share/man/man1/man1/cjpeg.1.gz
+-rw-r--r-- root/root usr/share/man/man1/man1/djpeg.1.gz
+-rw-r--r-- root/root usr/share/man/man1/man1/jpegtran.1.gz
+-rw-r--r-- root/root usr/share/man/man1/man1/rdjpgcom.1.gz
+-rw-r--r-- root/root usr/share/man/man1/man1/wrjpgcom.1.gz
diff --git a/base/libjpeg/.md5sum b/base/libjpeg/.md5sum
new file mode 100644
index 000000000..0e6b65dbf
--- /dev/null
+++ b/base/libjpeg/.md5sum
@@ -0,0 +1 @@
+382ef33b339c299b56baf1296cda9785 jpegsrc.v7.tar.gz
diff --git a/base/libjpeg/Pkgfile b/base/libjpeg/Pkgfile
new file mode 100755
index 000000000..657e61b9a
--- /dev/null
+++ b/base/libjpeg/Pkgfile
@@ -0,0 +1,24 @@
+# Description: Librairie de fonctions de support jpeg
+# URL: http://www.ijg.org/
+# Maintainer: NuTyX core team
+# Packager: thierryn1 at hispeed dot ch
+# Depends on:
+
+name=libjpeg
+version=7
+release=1
+source=( http://www.ijg.org/files/jpegsrc.v$version.tar.gz)
+
+
+build() {
+ cd jpeg-$version
+ ./configure --prefix=/usr \
+ --mandir=/usr/share/man \
+ --infodir=/usr/share/info \
+ --enable-shared \
+ --enable-static
+ make
+ mkdir -p $PKG/usr/include $PKG/usr/lib $PKG/usr/bin
+ mkdir -p $PKG/usr/share/man/man1
+ make prefix=$PKG/usr mandir=$PKG/usr/share/man/man1 infodir=$PKG/usr/share/info install
+}