diff options
author | Danny Rawlins <romster@shortcircuit.net.au> | 2007-08-16 10:49:59 +1000 |
---|---|---|
committer | Danny Rawlins <romster@shortcircuit.net.au> | 2007-08-17 05:47:54 +1000 |
commit | 5390040c4662f103e93a9c4e30db44f2c92365da (patch) | |
tree | 6384ec468f245beb0b79c2931981da1ef478f794 /x264 | |
parent | d6e991ddda3c07326a7322bb32f02bf60e6d4b9f (diff) | |
download | contrib-5390040c4662f103e93a9c4e30db44f2c92365da.tar.gz contrib-5390040c4662f103e93a9c4e30db44f2c92365da.tar.xz |
x264: r654 -> r667
Diffstat (limited to 'x264')
-rw-r--r-- | x264/.footprint | 4 | ||||
-rw-r--r-- | x264/.md5sum | 2 | ||||
-rw-r--r-- | x264/Pkgfile | 7 |
3 files changed, 8 insertions, 5 deletions
diff --git a/x264/.footprint b/x264/.footprint index d0b2904d8..c35997577 100644 --- a/x264/.footprint +++ b/x264/.footprint @@ -5,7 +5,7 @@ drwxr-xr-x root/root usr/include/ -rw-r--r-- root/root usr/include/x264.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.54 --rwxr-xr-x root/root usr/lib/libx264.so.54 +lrwxrwxrwx root/root usr/lib/libx264.so -> libx264.so.56 +-rwxr-xr-x root/root usr/lib/libx264.so.56 drwxr-xr-x root/root usr/lib/pkgconfig/ -rw-r--r-- root/root usr/lib/pkgconfig/x264.pc diff --git a/x264/.md5sum b/x264/.md5sum index b0e0250db..4bde6b99c 100644 --- a/x264/.md5sum +++ b/x264/.md5sum @@ -1 +1 @@ -2a1edc93caac1345fe915642854e39f1 x264-snapshot-r654.tar.bz2 +5f0b479a1042c94b322f20a9af2d9174 x264-snapshot-r667.tar.bz2 diff --git a/x264/Pkgfile b/x264/Pkgfile index f250ba9ce..279c6ed91 100644 --- a/x264/Pkgfile +++ b/x264/Pkgfile @@ -5,15 +5,18 @@ # Depends on: name=x264 -version=r654 +version=r667 release=1 source=(http://romster.shortcircuit.net.au/crux/source/x264-snapshot-$version.tar.bz2) build() { cd x264 - sed -i -e 's|^ CFLAGS="-O4 -ffast-math $CFLAGS"$| CFLAGS="$CFLAGS -O3 -ffast-math"|' configure + + sed -i -e '/^ CFLAGS="/s/-O4 -ffast-math $CFLAGS/${CFLAGS\/-O?\/-O3} -ffast-math/' configure + ./configure \ --prefix=/usr \ + --enable-pic \ --enable-pthread \ --enable-shared |