diff options
author | Nicolás Reynolds <fauno@kiwwwi.com.ar> | 2011-03-22 00:33:28 -0300 |
---|---|---|
committer | Nicolás Reynolds <fauno@kiwwwi.com.ar> | 2011-03-22 00:33:28 -0300 |
commit | d306ce23cc50c1b5110ee9e4cacfbed9b1591525 (patch) | |
tree | e1342136a79bdf32d50df3913829d1e227b6d5fb /libre | |
parent | 3f7a477840aefb8bcc0c237c852f0da0fa1c60cb (diff) | |
parent | cef2c81257cc44bce4ecd1e74d4c25e4b51cfce1 (diff) | |
download | abslibre-d306ce23cc50c1b5110ee9e4cacfbed9b1591525.tar.gz abslibre-d306ce23cc50c1b5110ee9e4cacfbed9b1591525.tar.bz2 abslibre-d306ce23cc50c1b5110ee9e4cacfbed9b1591525.zip |
Merge branch 'master' of ssh://vparabola/srv/git/projects/abslibre
Diffstat (limited to 'libre')
-rw-r--r-- | libre/ffmpeg-libre/PKGBUILD | 58 | ||||
-rw-r--r-- | libre/libretools/PKGBUILD | 3 |
2 files changed, 61 insertions, 0 deletions
diff --git a/libre/ffmpeg-libre/PKGBUILD b/libre/ffmpeg-libre/PKGBUILD new file mode 100644 index 000000000..c77ad16b5 --- /dev/null +++ b/libre/ffmpeg-libre/PKGBUILD @@ -0,0 +1,58 @@ +# $Id: PKGBUILD 85265 2010-07-11 10:15:18Z ibiru $ +# Maintainer : Ionut Biru <ibiru@archlinux.org> +# Contributor: Tom Newsom <Jeepster@gmx.co.uk> +# Contributor: Paul Mattal <paul@archlinux.org> +# Maintainer for Parabola GNU/Linux: Omar Botta <omarbotta@gnulinuxlibre.net> + +pkgname=ffmpeg-libre +pkgver=20110121 +pkgrel=1 +pkgdesc="Complete and free Internet live audio and video broadcasting solution for Linux/Unix. Libre version without faac" +arch=('i686' 'x86_64') +url="http://ffmpeg.org/" +license=('GPL') +depends=('bzip2' 'lame' 'sdl' 'libvorbis' 'xvidcore' 'zlib' 'x264' 'libtheora' 'opencore-amr' 'alsa-lib' 'libvdpau' 'libxfixes' 'schroedinger' 'libvpx' 'libva' 'openjpeg') +makedepends=('yasm') +#remake snapshot with: svn export svn://svn.ffmpeg.org/ffmpeg/trunk/@25472 +source=(ftp://ftp.archlinux.org/other/ffmpeg/ffmpeg-${pkgver}.tar.xz) +md5sums=('73080643ae7702d4164da92b9e6fedb6') +options=('force') +#source=(http://ffmpeg.org/releases//releases/ffmpeg-${pkgver}.tar.bz2) +provides=('ffmpeg') +conflicts=('ffmpeg') +replaces=("ffmpeg=$pkgver") + +build() { + cd "$srcdir/${pkgname%-libre}" + + ./configure \ + --prefix=/usr \ + --enable-gpl \ + --enable-libmp3lame \ + --enable-libvorbis \ + --disable-libfaac \ + --enable-libxvid \ + --enable-libx264 \ + --enable-libvpx \ + --enable-libtheora \ + --enable-postproc \ + --enable-shared \ + --enable-x11grab \ + --enable-libopencore_amrnb \ + --enable-libopencore_amrwb \ + --enable-libschroedinger \ + --enable-libopenjpeg \ + --enable-version3 \ + --disable-nonfree \ + --enable-runtime-cpudetect \ + --disable-debug # libfaac is nonfree + + make + make tools/qt-faststart + make doc/ff{mpeg,play,server}.1 + + make DESTDIR="$pkgdir" install install-man + install -D -m755 tools/qt-faststart "$pkgdir/usr/bin/qt-faststart" +} + +# vim:set ts=2 sw=2 et: diff --git a/libre/libretools/PKGBUILD b/libre/libretools/PKGBUILD index ef0fd8885..c0908912a 100644 --- a/libre/libretools/PKGBUILD +++ b/libre/libretools/PKGBUILD @@ -41,12 +41,15 @@ package() { install -m755 ${_gitname}/abslibre-commit ${pkgdir}/usr/bin install -m755 ${_gitname}/createworkdir ${pkgdir}/usr/bin/ + install -m755 ${_gitname}/fullpkg ${pkgdir}/usr/bin + install -m755 ${_gitname}/is_built ${pkgdir}/usr/bin install -m755 ${_gitname}/librechroot ${pkgdir}/usr/bin/ install -m755 ${_gitname}/librecommit ${pkgdir}/usr/bin/ install -m755 ${_gitname}/librediff ${pkgdir}/usr/bin/ install -m755 ${_gitname}/libremakepkg ${pkgdir}/usr/bin/ install -m755 ${_gitname}/librerelease ${pkgdir}/usr/bin/ install -m755 ${_gitname}/librestage ${pkgdir}/usr/bin/ + install -m755 ${_gitname}/mipsrelease ${pkgdir}/usr/bin install -m755 ${_gitname}/pkgbuild-check-nonfree ${pkgdir}/usr/bin/ install -m755 ${_gitname}/updateabslibre ${pkgdir}/usr/bin |