diff options
author | tnut <tnut at nutyx dot com> | 2012-01-08 12:25:45 +0100 |
---|---|---|
committer | tnut <tnut at nutyx dot com> | 2012-01-08 12:25:45 +0100 |
commit | 364eb3f4561747275c1649fda3fd60c1c16632f9 (patch) | |
tree | f65644af8e9a76e84cc48e97cee5ae22fcbd6575 /extra/libmp4v2/Pkgfile | |
parent | 9291e062cb24bac5d7c7059d4dc64669c1917b33 (diff) | |
download | nutyx-pakxe-364eb3f4561747275c1649fda3fd60c1c16632f9.tar.gz nutyx-pakxe-364eb3f4561747275c1649fda3fd60c1c16632f9.tar.bz2 nutyx-pakxe-364eb3f4561747275c1649fda3fd60c1c16632f9.tar.xz nutyx-pakxe-364eb3f4561747275c1649fda3fd60c1c16632f9.zip |
Suppression des ports extra
Diffstat (limited to 'extra/libmp4v2/Pkgfile')
-rw-r--r-- | extra/libmp4v2/Pkgfile | 53 |
1 files changed, 0 insertions, 53 deletions
diff --git a/extra/libmp4v2/Pkgfile b/extra/libmp4v2/Pkgfile deleted file mode 100644 index a98e37a8e..000000000 --- a/extra/libmp4v2/Pkgfile +++ /dev/null @@ -1,53 +0,0 @@ -# Description: Librairie libmp4v2 de mpeg4ip -# URL: http://mpeg4ip.sourceforge.net/ -# Maintainer: NuTyX core team -# Packager: thierryn1 at hispeed dot ch -# Depends on: nasm -# Run on: nasm - -name=libmp4v2 -version=1.6 -release=1 -source=(http://downloads.sourceforge.net/mpeg4ip/mpeg4ip-$version.tar.gz\ - http://nutyx.meticul.eu/files/patchs/$name/gcc44.patch) -build() { - cd mpeg4ip-$version - patch -Np1 -i ../gcc44.patch - touch bootstrapped - sed -i -e 's/nasm -r/nasm -v/' configure - echo "" > lib/rtp/configure - echo "" > lib/SDLAudio/configure - ./configure --prefix=/usr \ - --disable-static \ - --disable-warns-as-err \ - --disable-server \ - --disable-player \ - --disable-mp4live \ - --disable-id3tags \ - --disable-xvid \ - --disable-a52dec \ - --disable-mad \ - --disable-mpeg2dec \ - --disable-srtp \ - --disable-mp3lame \ - --disable-faac \ - --disable-ffmpeg \ - --disable-x264 \ - --disable-sdl - sed -i -e 's/^SUBDIRS = . test util/SUBDIRS = ./' lib/mp4v2/Makefile - make -C lib/mp4v2 - make -C lib/mp4v2 DESTDIR=$PKG install - install -d $PKG/usr/include/libmp4v2 - install -m 0755 -D mpeg4ip-config $PKG/usr/bin/mpeg4ip-config - - install -m 0644 -t $PKG/usr/include/libmp4v2/ \ - include/mpeg4ip.h include/mpeg4ip_version.h mpeg4ip_config.h - - sed -i -e 's|"mpeg4ip.h"|<libmp4v2/mpeg4ip.h>|' $PKG/usr/include/mp4.h - - sed -i \ - -e 's|mpeg4ip_config.h|libmp4v2/mpeg4ip_config.h|' \ - -e 's|"mpeg4ip_version.h"|<libmp4v2/mpeg4ip_version.h>|' \ - $PKG/usr/include/libmp4v2/mpeg4ip.h -} - |