diff options
author | piernov <piernov@piernov.org> | 2012-05-13 21:25:08 +0200 |
---|---|---|
committer | piernov <piernov@piernov.org> | 2012-05-13 21:25:08 +0200 |
commit | f35fb119bf993d3454668f50a17334e09b77160b (patch) | |
tree | 9f1d840f10e24848f8b94eb9c5c4e811e0984232 /x264 | |
parent | 2814457a550d6a14e6134ac4c06b1f96a92d2061 (diff) | |
parent | 933ac25d27eb5fa5f8f983ab8ac8d507e773c044 (diff) | |
download | nutyx-pakxe-f35fb119bf993d3454668f50a17334e09b77160b.tar.gz nutyx-pakxe-f35fb119bf993d3454668f50a17334e09b77160b.tar.bz2 nutyx-pakxe-f35fb119bf993d3454668f50a17334e09b77160b.tar.xz nutyx-pakxe-f35fb119bf993d3454668f50a17334e09b77160b.zip |
Merge branch 'master' of http://kiao.no-ip.info/NuTyX/git/nutyx-pakxe
Diffstat (limited to 'x264')
-rw-r--r-- | x264/.footprint.i686 | 12 | ||||
-rw-r--r-- | x264/.footprint.x86_64 | 12 | ||||
-rw-r--r-- | x264/.md5sum.i686 | 1 | ||||
-rw-r--r-- | x264/.md5sum.x86_64 | 1 | ||||
-rw-r--r-- | x264/Pkgfile | 25 |
5 files changed, 51 insertions, 0 deletions
diff --git a/x264/.footprint.i686 b/x264/.footprint.i686 new file mode 100644 index 000000000..2559d9b61 --- /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.119 +-rw-r--r-- root/root usr/lib/libx264.so.119 +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..2559d9b61 --- /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.119 +-rw-r--r-- root/root usr/lib/libx264.so.119 +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..e81da98ca --- /dev/null +++ b/x264/.md5sum.i686 @@ -0,0 +1 @@ +1df32a215f0f13271a83290ea16e9299 x264-snapshot-20111022-2245.tar.bz2 diff --git a/x264/.md5sum.x86_64 b/x264/.md5sum.x86_64 new file mode 100644 index 000000000..e81da98ca --- /dev/null +++ b/x264/.md5sum.x86_64 @@ -0,0 +1 @@ +1df32a215f0f13271a83290ea16e9299 x264-snapshot-20111022-2245.tar.bz2 diff --git a/x264/Pkgfile b/x264/Pkgfile new file mode 100644 index 000000000..02cbc9d4c --- /dev/null +++ b/x264/Pkgfile @@ -0,0 +1,25 @@ +# 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=20111022 +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 + make + make DESTDIR=$PKG install + chmod a-x $PKG/usr/lib/*.so +} |