summaryrefslogtreecommitdiffstats
path: root/x264/Pkgfile
diff options
context:
space:
mode:
authortnut <thierryn1 at hispeed dot ch>2012-05-12 12:12:31 +0200
committertnut <thierryn1 at hispeed dot ch>2012-05-12 12:12:31 +0200
commit49a0985af5c245da44867e8b915da1aee3d83809 (patch)
treee2cf21af5a85746577f0c0cd5329426de9b25dc4 /x264/Pkgfile
parent9bdab25962418c284effe27b0626a0f7b83371d6 (diff)
downloadnutyx-pakxe-49a0985af5c245da44867e8b915da1aee3d83809.tar.gz
nutyx-pakxe-49a0985af5c245da44867e8b915da1aee3d83809.tar.bz2
nutyx-pakxe-49a0985af5c245da44867e8b915da1aee3d83809.tar.xz
nutyx-pakxe-49a0985af5c245da44867e8b915da1aee3d83809.zip
ajout de x264
Diffstat (limited to 'x264/Pkgfile')
-rw-r--r--x264/Pkgfile25
1 files changed, 25 insertions, 0 deletions
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
+}