[arch-commits] Commit in handbrake/repos (6 files)
Evangelos Foutras
foutrelis at nymeria.archlinux.org
Mon Mar 24 13:28:15 UTC 2014
Date: Monday, March 24, 2014 @ 14:28:14
Author: foutrelis
Revision: 108186
archrelease: copy trunk to community-staging-i686, community-staging-x86_64
Added:
handbrake/repos/community-staging-i686/
handbrake/repos/community-staging-i686/PKGBUILD
(from rev 108185, handbrake/trunk/PKGBUILD)
handbrake/repos/community-staging-i686/handbrake.install
(from rev 108185, handbrake/trunk/handbrake.install)
handbrake/repos/community-staging-x86_64/
handbrake/repos/community-staging-x86_64/PKGBUILD
(from rev 108185, handbrake/trunk/PKGBUILD)
handbrake/repos/community-staging-x86_64/handbrake.install
(from rev 108185, handbrake/trunk/handbrake.install)
--------------------------------------------+
community-staging-i686/PKGBUILD | 80 +++++++++++++++++++++++++++
community-staging-i686/handbrake.install | 14 ++++
community-staging-x86_64/PKGBUILD | 80 +++++++++++++++++++++++++++
community-staging-x86_64/handbrake.install | 14 ++++
4 files changed, 188 insertions(+)
Copied: handbrake/repos/community-staging-i686/PKGBUILD (from rev 108185, handbrake/trunk/PKGBUILD)
===================================================================
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2014-03-24 13:28:14 UTC (rev 108186)
@@ -0,0 +1,80 @@
+# $Id$
+# Maintainer: Evangelos Foutras <evangelos at foutrelis.com>
+# Contributor: Giovanni Scafora <giovanni at archlinux.org>
+# Contributor: Sebastien Piccand <sebcactus gmail com>
+
+pkgname=('handbrake' 'handbrake-cli')
+pkgver=0.9.9
+pkgrel=6
+arch=('i686' 'x86_64')
+url="http://handbrake.fr/"
+license=('GPL')
+makedepends=('intltool' 'python2' 'yasm' 'wget' 'bzip2' 'gcc-libs' 'libnotify'
+ 'gst-plugins-base' 'gtk3' 'dbus-glib' 'fribidi' 'libass'
+ 'fontconfig' 'freetype2' 'libxml2' 'libogg' 'libvorbis'
+ 'libtheora' 'libsamplerate' 'libbluray' 'x264')
+source=(http://downloads.sourceforge.net/project/handbrake/$pkgver/HandBrake-$pkgver.tar.bz2)
+sha256sums=('a71dd774104cda00cfb51a813550351d638253791f2f419d04a66f3158a835b3')
+
+prepare() {
+ cd "$srcdir/HandBrake-$pkgver"
+
+ # Use Python 2
+ sed -i 's/python /python2 /' gtk/src/Makefile.am
+
+ # Use more system libs
+ # We had ffmpeg here as well but it broke PGS subtitle processing
+ # https://forum.handbrake.fr/viewtopic.php?f=13&t=27581
+ sed -i \
+ -e '/MODULES += contrib\/libbluray/d' \
+ -e '/MODULES += contrib\/x264/d' \
+ make/include/main.defs
+
+ # Fix configure.ac to work with automake 1.13
+ cd gtk
+ sed -i \
+ -e 's/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/' \
+ -e '/AM_PROG_CC_STDC/d' \
+ -e 's/$pkg_gudev"/gmodule-2.0 $pkg_gudev"/' \
+ configure.ac
+
+ autoreconf -vi
+}
+
+build() {
+ cd "$srcdir/HandBrake-$pkgver"
+
+ ./configure \
+ --prefix=/usr \
+ --force \
+ --disable-gtk-update-checks
+ cd build
+ make
+}
+
+package_handbrake() {
+ pkgdesc="Multithreaded video transcoder"
+ depends=('bzip2' 'gcc-libs' 'gst-plugins-base' 'libnotify' 'dbus-glib'
+ 'fribidi' 'libass' 'gtk3' 'fontconfig' 'freetype2' 'libxml2'
+ 'libogg' 'libvorbis' 'libtheora' 'libsamplerate' 'libbluray'
+ 'x264' 'desktop-file-utils' 'hicolor-icon-theme')
+ optdepends=('gst-plugins-good: for video previews'
+ 'gst-libav: for video previews')
+ install=$pkgname.install
+
+ cd "$srcdir/HandBrake-$pkgver/build"
+
+ make DESTDIR="$pkgdir" install
+ rm "$pkgdir/usr/bin/HandBrakeCLI"
+}
+
+package_handbrake-cli() {
+ pkgdesc="Multithreaded video transcoder (CLI)"
+ depends=('bzip2' 'gcc-libs' 'zlib' 'fribidi' 'libass' 'libxml2' 'libtheora'
+ 'libsamplerate' 'libbluray' 'x264')
+
+ cd "$srcdir/HandBrake-$pkgver/build"
+ install -D HandBrakeCLI "$pkgdir/usr/bin/HandBrakeCLI"
+}
+
+# vim:set ts=2 sw=2 et:
Copied: handbrake/repos/community-staging-i686/handbrake.install (from rev 108185, handbrake/trunk/handbrake.install)
===================================================================
--- community-staging-i686/handbrake.install (rev 0)
+++ community-staging-i686/handbrake.install 2014-03-24 13:28:14 UTC (rev 108186)
@@ -0,0 +1,14 @@
+post_install() {
+ update-desktop-database -q
+ gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}
+
+post_upgrade() {
+ post_install
+}
+
+post_remove() {
+ post_install
+}
+
+# vim:set ts=2 sw=2 et:
Copied: handbrake/repos/community-staging-x86_64/PKGBUILD (from rev 108185, handbrake/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2014-03-24 13:28:14 UTC (rev 108186)
@@ -0,0 +1,80 @@
+# $Id$
+# Maintainer: Evangelos Foutras <evangelos at foutrelis.com>
+# Contributor: Giovanni Scafora <giovanni at archlinux.org>
+# Contributor: Sebastien Piccand <sebcactus gmail com>
+
+pkgname=('handbrake' 'handbrake-cli')
+pkgver=0.9.9
+pkgrel=6
+arch=('i686' 'x86_64')
+url="http://handbrake.fr/"
+license=('GPL')
+makedepends=('intltool' 'python2' 'yasm' 'wget' 'bzip2' 'gcc-libs' 'libnotify'
+ 'gst-plugins-base' 'gtk3' 'dbus-glib' 'fribidi' 'libass'
+ 'fontconfig' 'freetype2' 'libxml2' 'libogg' 'libvorbis'
+ 'libtheora' 'libsamplerate' 'libbluray' 'x264')
+source=(http://downloads.sourceforge.net/project/handbrake/$pkgver/HandBrake-$pkgver.tar.bz2)
+sha256sums=('a71dd774104cda00cfb51a813550351d638253791f2f419d04a66f3158a835b3')
+
+prepare() {
+ cd "$srcdir/HandBrake-$pkgver"
+
+ # Use Python 2
+ sed -i 's/python /python2 /' gtk/src/Makefile.am
+
+ # Use more system libs
+ # We had ffmpeg here as well but it broke PGS subtitle processing
+ # https://forum.handbrake.fr/viewtopic.php?f=13&t=27581
+ sed -i \
+ -e '/MODULES += contrib\/libbluray/d' \
+ -e '/MODULES += contrib\/x264/d' \
+ make/include/main.defs
+
+ # Fix configure.ac to work with automake 1.13
+ cd gtk
+ sed -i \
+ -e 's/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/' \
+ -e '/AM_PROG_CC_STDC/d' \
+ -e 's/$pkg_gudev"/gmodule-2.0 $pkg_gudev"/' \
+ configure.ac
+
+ autoreconf -vi
+}
+
+build() {
+ cd "$srcdir/HandBrake-$pkgver"
+
+ ./configure \
+ --prefix=/usr \
+ --force \
+ --disable-gtk-update-checks
+ cd build
+ make
+}
+
+package_handbrake() {
+ pkgdesc="Multithreaded video transcoder"
+ depends=('bzip2' 'gcc-libs' 'gst-plugins-base' 'libnotify' 'dbus-glib'
+ 'fribidi' 'libass' 'gtk3' 'fontconfig' 'freetype2' 'libxml2'
+ 'libogg' 'libvorbis' 'libtheora' 'libsamplerate' 'libbluray'
+ 'x264' 'desktop-file-utils' 'hicolor-icon-theme')
+ optdepends=('gst-plugins-good: for video previews'
+ 'gst-libav: for video previews')
+ install=$pkgname.install
+
+ cd "$srcdir/HandBrake-$pkgver/build"
+
+ make DESTDIR="$pkgdir" install
+ rm "$pkgdir/usr/bin/HandBrakeCLI"
+}
+
+package_handbrake-cli() {
+ pkgdesc="Multithreaded video transcoder (CLI)"
+ depends=('bzip2' 'gcc-libs' 'zlib' 'fribidi' 'libass' 'libxml2' 'libtheora'
+ 'libsamplerate' 'libbluray' 'x264')
+
+ cd "$srcdir/HandBrake-$pkgver/build"
+ install -D HandBrakeCLI "$pkgdir/usr/bin/HandBrakeCLI"
+}
+
+# vim:set ts=2 sw=2 et:
Copied: handbrake/repos/community-staging-x86_64/handbrake.install (from rev 108185, handbrake/trunk/handbrake.install)
===================================================================
--- community-staging-x86_64/handbrake.install (rev 0)
+++ community-staging-x86_64/handbrake.install 2014-03-24 13:28:14 UTC (rev 108186)
@@ -0,0 +1,14 @@
+post_install() {
+ update-desktop-database -q
+ gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}
+
+post_upgrade() {
+ post_install
+}
+
+post_remove() {
+ post_install
+}
+
+# vim:set ts=2 sw=2 et:
More information about the arch-commits
mailing list