summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--extra/libmpeg2/.footprint28
-rw-r--r--extra/libmpeg2/.md5sum1
-rwxr-xr-xextra/libmpeg2/Pkgfile20
3 files changed, 49 insertions, 0 deletions
diff --git a/extra/libmpeg2/.footprint b/extra/libmpeg2/.footprint
new file mode 100644
index 000000000..71a118388
--- /dev/null
+++ b/extra/libmpeg2/.footprint
@@ -0,0 +1,28 @@
+drwxr-xr-x root/root usr/
+drwxr-xr-x root/root usr/bin/
+-rwxr-xr-x root/root usr/bin/corrupt_mpeg2
+-rwxr-xr-x root/root usr/bin/extract_mpeg2
+-rwxr-xr-x root/root usr/bin/mpeg2dec
+drwxr-xr-x root/root usr/include/
+drwxr-xr-x root/root usr/include/mpeg2dec/
+-rw-r--r-- root/root usr/include/mpeg2dec/mpeg2.h
+-rw-r--r-- root/root usr/include/mpeg2dec/mpeg2convert.h
+drwxr-xr-x root/root usr/lib/
+-rw-r--r-- root/root usr/lib/libmpeg2.a
+-rwxr-xr-x root/root usr/lib/libmpeg2.la
+lrwxrwxrwx root/root usr/lib/libmpeg2.so -> libmpeg2.so.0.1.0
+lrwxrwxrwx root/root usr/lib/libmpeg2.so.0 -> libmpeg2.so.0.1.0
+-rwxr-xr-x root/root usr/lib/libmpeg2.so.0.1.0
+-rw-r--r-- root/root usr/lib/libmpeg2convert.a
+-rwxr-xr-x root/root usr/lib/libmpeg2convert.la
+lrwxrwxrwx root/root usr/lib/libmpeg2convert.so -> libmpeg2convert.so.0.0.0
+lrwxrwxrwx root/root usr/lib/libmpeg2convert.so.0 -> libmpeg2convert.so.0.0.0
+-rwxr-xr-x root/root usr/lib/libmpeg2convert.so.0.0.0
+drwxr-xr-x root/root usr/lib/pkgconfig/
+-rw-r--r-- root/root usr/lib/pkgconfig/libmpeg2.pc
+-rw-r--r-- root/root usr/lib/pkgconfig/libmpeg2convert.pc
+drwxr-xr-x root/root usr/share/
+drwxr-xr-x root/root usr/share/man/
+drwxr-xr-x root/root usr/share/man/man1/
+-rw-r--r-- root/root usr/share/man/man1/extract_mpeg2.1.gz
+-rw-r--r-- root/root usr/share/man/man1/mpeg2dec.1.gz
diff --git a/extra/libmpeg2/.md5sum b/extra/libmpeg2/.md5sum
new file mode 100644
index 000000000..2a1f40e57
--- /dev/null
+++ b/extra/libmpeg2/.md5sum
@@ -0,0 +1 @@
+0f92c7454e58379b4a5a378485bbd8ef libmpeg2-0.5.1.tar.gz
diff --git a/extra/libmpeg2/Pkgfile b/extra/libmpeg2/Pkgfile
new file mode 100755
index 000000000..db1bb7c3d
--- /dev/null
+++ b/extra/libmpeg2/Pkgfile
@@ -0,0 +1,20 @@
+# Description: Librairie pour le décodage de flux MPEG-1 et MPEG-2
+# URL: http://libmpeg2.sourceforge.net/
+# Maintainer: NuTyX core team
+# Packager: thierryn1 at hispeed dot ch
+# Depends on:
+
+name=libmpeg2
+version=0.5.1
+release=1
+source=(http://libmpeg2.sourceforge.net/files/$name-$version.tar.gz )
+
+
+build() {
+ cd $name-$version
+ ./configure --prefix=/usr \
+ --mandir=/usr/share/man \
+ --enable-shared
+ make
+ make DESTDIR=$PKG install
+}