summaryrefslogtreecommitdiffstats
path: root/x264
diff options
context:
space:
mode:
authorpiernov <piernov@piernov.org>2012-01-22 11:38:02 +0100
committerpiernov <piernov@piernov.org>2012-01-22 11:38:02 +0100
commit50e5ce5b17e69be13228e2393c5804b0a79acfab (patch)
tree9845fa9af128d7fdd791755bb2be320f3ba2be4e /x264
parent9626427c1a1d9c292fc519810c13b9a8073e777f (diff)
parent8548e8d6882b55dfb509b18dedfb7db17630037d (diff)
downloadnutyx-extra-50e5ce5b17e69be13228e2393c5804b0a79acfab.tar.gz
nutyx-extra-50e5ce5b17e69be13228e2393c5804b0a79acfab.tar.bz2
nutyx-extra-50e5ce5b17e69be13228e2393c5804b0a79acfab.tar.xz
nutyx-extra-50e5ce5b17e69be13228e2393c5804b0a79acfab.zip
Merged with http://kiao.no-ip.info/NuTyX/git/nutyx-pakxe → Repository splitted → nutyx-extra
Diffstat (limited to 'x264')
-rw-r--r--x264/.footprint.i68612
-rw-r--r--x264/.footprint.x86_6412
-rw-r--r--x264/.md5sum.i6861
-rw-r--r--x264/.md5sum.x86_641
-rw-r--r--x264/Pkgfile26
5 files changed, 52 insertions, 0 deletions
diff --git a/x264/.footprint.i686 b/x264/.footprint.i686
new file mode 100644
index 000000000..0b8d452b7
--- /dev/null
+++ b/x264/.footprint.i686
@@ -0,0 +1,12 @@
+drwxr-xr-x root/root usr/
+drwxr-xr-x root/root usr/bin/
+-rwxr-xr-x root/root usr/bin/x264
+drwxr-xr-x root/root usr/include/
+-rw-r--r-- root/root usr/include/x264.h
+-rw-r--r-- root/root usr/include/x264_config.h
+drwxr-xr-x root/root usr/lib/
+-rw-r--r-- root/root usr/lib/libx264.a
+lrwxrwxrwx root/root usr/lib/libx264.so -> libx264.so.120
+-rw-r--r-- root/root usr/lib/libx264.so.120
+drwxr-xr-x root/root usr/lib/pkgconfig/
+-rw-r--r-- root/root usr/lib/pkgconfig/x264.pc
diff --git a/x264/.footprint.x86_64 b/x264/.footprint.x86_64
new file mode 100644
index 000000000..0b8d452b7
--- /dev/null
+++ b/x264/.footprint.x86_64
@@ -0,0 +1,12 @@
+drwxr-xr-x root/root usr/
+drwxr-xr-x root/root usr/bin/
+-rwxr-xr-x root/root usr/bin/x264
+drwxr-xr-x root/root usr/include/
+-rw-r--r-- root/root usr/include/x264.h
+-rw-r--r-- root/root usr/include/x264_config.h
+drwxr-xr-x root/root usr/lib/
+-rw-r--r-- root/root usr/lib/libx264.a
+lrwxrwxrwx root/root usr/lib/libx264.so -> libx264.so.120
+-rw-r--r-- root/root usr/lib/libx264.so.120
+drwxr-xr-x root/root usr/lib/pkgconfig/
+-rw-r--r-- root/root usr/lib/pkgconfig/x264.pc
diff --git a/x264/.md5sum.i686 b/x264/.md5sum.i686
new file mode 100644
index 000000000..b9e01a9ae
--- /dev/null
+++ b/x264/.md5sum.i686
@@ -0,0 +1 @@
+fd4e3ebde12fef4985ad117a69255b2c x264-snapshot-20111210-2245.tar.bz2
diff --git a/x264/.md5sum.x86_64 b/x264/.md5sum.x86_64
new file mode 100644
index 000000000..b9e01a9ae
--- /dev/null
+++ b/x264/.md5sum.x86_64
@@ -0,0 +1 @@
+fd4e3ebde12fef4985ad117a69255b2c x264-snapshot-20111210-2245.tar.bz2
diff --git a/x264/Pkgfile b/x264/Pkgfile
new file mode 100644
index 000000000..bbf9ebcdf
--- /dev/null
+++ b/x264/Pkgfile
@@ -0,0 +1,26 @@
+# Description: Librairie libre pour encoder des flux vidéos en H264/AVC
+# URL: http://www.videolan.org/developers/x264.html
+# Maintainer: NuTyX core team
+# Packager: thierryn1 at hispeed dot ch
+# Depends on: yasm
+# Run on: yasm
+
+name=x264
+version=20111210
+release=1
+source=(ftp://ftp.videolan.org/pub/videolan/x264/snapshots/x264-snapshot-$version-2245.tar.bz2)
+
+build() {
+ cd x264-snapshot-$version-2245
+
+ ./configure \
+ --prefix=/usr \
+ --enable-pic \
+ --enable-shared \
+ --enable-static \
+ --enable-visualize \
+ --bit-depth=10
+ make
+ make DESTDIR=$PKG install
+ chmod a-x $PKG/usr/lib/*.so
+}