[arch-commits] Commit in avidemux/repos (4 files)

2020-08-04 Thread Maxime Gauduin via arch-commits
Date: Tuesday, August 4, 2020 @ 14:44:15
  Author: alucryd
Revision: 393144

archrelease: copy trunk to staging-x86_64

Added:
  avidemux/repos/staging-x86_64/
  avidemux/repos/staging-x86_64/PKGBUILD
(from rev 393143, avidemux/trunk/PKGBUILD)
  avidemux/repos/staging-x86_64/log.diff
(from rev 393143, avidemux/trunk/log.diff)
  avidemux/repos/staging-x86_64/qt-5.15.diff
(from rev 393143, avidemux/trunk/qt-5.15.diff)

--+
 PKGBUILD |   79 +
 log.diff |   12 
 qt-5.15.diff |   11 +++
 3 files changed, 102 insertions(+)

Copied: avidemux/repos/staging-x86_64/PKGBUILD (from rev 393143, 
avidemux/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2020-08-04 14:44:15 UTC (rev 393144)
@@ -0,0 +1,79 @@
+# Maintainer: Levente Polyak 
+# Maintainer: Eric Bélanger 
+
+pkgbase=avidemux
+pkgname=('avidemux-cli' 'avidemux-qt')
+pkgver=2.7.6
+pkgrel=2
+pkgdesc='Graphical tool to edit video (filter/re-encode/split)'
+url='http://fixounet.free.fr/avidemux/'
+arch=('x86_64')
+license=('GPL2')
+makedepends=('cmake' 'libxslt' 'qt5-base' 'jack' 'libvorbis' 'libxv' 'opus' 
'desktop-file-utils'
+ 'alsa-lib' 'lame' 'xvidcore' 'faad2' 'faac' 'x264' 'x265' 
'libsamplerate'
+ 'opencore-amr' 'yasm' 'mesa' 'libvpx' 'libpulse' 'libva' 
'intltool' 'sqlite'
+ 'libvdpau' 'libdca' 'fribidi' 'glu' 'qt5-tools' 'twolame' 
'libfdk-aac' 'libass')
+options=('!emptydirs')
+source=(https://downloads.sourceforge.net/avidemux/avidemux_${pkgver}.tar.gz
+log.diff qt-5.15.diff)
+sha256sums=('9a88741f3535443d4bde35d4207ca2ff96d3b136db2e7232cb50dd6b4eb293cf'
+'8b751d137037f22fd4ae6750709014bcf61269a18f1c32e1a91f481285c807aa'
+'255a2446d493503dc237482f6fe26e2186f0ea0ef43ac9e17b8059fe232aad43')
+sha512sums=('7f40b48a6c688a5a847e46118aef822a0f5f1dfb50b6223ce8a825d9e3817a9114bc3400aa7b7286a495051912b4b54cf1b86ea7064e6164f7ca7455e5a714ee'
+
'bbae5b4a549113b12e728c4c0ac8c1c92a0b7500be8dcecc791c16c9a913406feaa9f7bc477985970a920d2df391cc9392457512d84b9c4b829981cc072f2b2e'
+
'ed78c2a3e4ede4fed1d3ea353c7dc350dc73050f76c8112cb24d97b3eda01f7c186d5db199f71f56953c5e5d8104de44dc0e84e1bfa01b6647c050c11fc375f2')
+
+prepare() {
+  cd ${pkgbase}_${pkgver}
+  patch -Np1 -i ../log.diff  # don't hide the build output
+  patch -Np1 -i ../qt-5.15.diff  # fix build against Qt 5.15.0
+  sed -i 's|../avidemux/qt4|../avidemux/qt4 
-DLRELEASE_EXECUTABLE=/usr/bin/lrelease-qt5|' bootStrap.bash
+  sed -e 's|0.19|1.0|' -i avidemux_plugins/ADM_videoFilters6/ass/CMakeLists.txt
+}
+
+build() {
+  cd ${pkgbase}_${pkgver}
+  bash bootStrap.bash --with-core --with-cli --with-plugins
+}
+
+package_avidemux-cli() {
+  depends=('libxml2' 'fontconfig' 'sqlite' 'libvpx' 'libva' 'libvdpau')
+  optdepends=('lame: for the corresponding audio encoder plugin'
+  'faac: for the corresponding audio encoder plugin'
+  'faad2: for the corresponding audio decoder plugin'
+  'opus: for the corresponding audio decoder plugin'
+  'opencore-amr: for the corresponding audio decoder plugin'
+  'jack: for the corresponding audio device plugin'
+  'libpulse: for the corresponding audio device plugin'
+  'x264: for the corresponding video encoder plugin'
+  'libx264: for the corresponding video encoder plugin'
+  'x265: for the corresponding video encoder plugin'
+  'xvidcore: for the corresponding video encoder plugin'
+  'qt5-base: for the QtScript scripting support'
+  'libdca: for the corresponding audio decoder plugin'
+  'libfdk-aac: for the corresponding audio decoder plugin'
+  'twolame: for the corresponding audio decoder plugin'
+  'libass: for the corresponding video filter plugin'
+  'fribidi: for the corresponding video filter plugin')
+
+  cd ${pkgbase}_${pkgver}
+  make -C buildCli DESTDIR="${pkgdir}" install
+  make -C buildCore DESTDIR="${pkgdir}" install
+  make -C buildPluginsCLI DESTDIR="${pkgdir}" install
+  make -C buildPluginsCommon DESTDIR="${pkgdir}" install
+
+  install -Dm 644 avidemux_icon.png "${pkgdir}/usr/share/pixmaps/avidemux.png"
+  install -Dm 644 man/avidemux.1 -t "${pkgdir}/usr/share/man/man1"
+}
+
+package_avidemux-qt() {
+  pkgdesc='Graphical tool to edit video (filter/re-encode/split) - Qt GUI'
+  depends=("avidemux-cli=${pkgver}" 'qt5-base' 'x264' 'x265' 'glu' 'libxv' 
'desktop-file-utils')
+  replaces=('avidemux-gtk')
+
+  cd ${pkgbase}_${pkgver}
+  make -C buildQt5 DESTDIR="${pkgdir}" install
+  make -C buildPluginsQt5 DESTDIR="${pkgdir}" install
+}
+
+# vim: ts=2 sw=2 et:

Copied: avidemux/repos/staging-x86_64/log.diff (from rev 393143, 
avidemux/trunk/log.diff)
===

[arch-commits] Commit in avidemux/repos (4 files)

2020-06-05 Thread Jan Steffens via arch-commits
Date: Friday, June 5, 2020 @ 13:58:39
  Author: heftig
Revision: 388341

archrelease: copy trunk to staging-x86_64

Added:
  avidemux/repos/staging-x86_64/
  avidemux/repos/staging-x86_64/PKGBUILD
(from rev 388340, avidemux/trunk/PKGBUILD)
  avidemux/repos/staging-x86_64/log.diff
(from rev 388340, avidemux/trunk/log.diff)
  avidemux/repos/staging-x86_64/qt-5.15.diff
(from rev 388340, avidemux/trunk/qt-5.15.diff)

--+
 PKGBUILD |   80 +
 log.diff |   12 
 qt-5.15.diff |   11 +++
 3 files changed, 103 insertions(+)

Copied: avidemux/repos/staging-x86_64/PKGBUILD (from rev 388340, 
avidemux/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2020-06-05 13:58:39 UTC (rev 388341)
@@ -0,0 +1,80 @@
+# Maintainer: Levente Polyak 
+# Maintainer: Eric Bélanger 
+
+pkgbase=avidemux
+pkgname=('avidemux-cli' 'avidemux-qt')
+pkgver=2.7.4
+pkgrel=5
+pkgdesc='Graphical tool to edit video (filter/re-encode/split)'
+url='http://fixounet.free.fr/avidemux/'
+arch=('x86_64')
+license=('GPL2')
+makedepends=('cmake' 'libxslt' 'qt5-base' 'jack' 'libvorbis' 'libxv' 'opus' 
'desktop-file-utils'
+ 'alsa-lib' 'lame' 'xvidcore' 'faad2' 'faac' 'x264' 'x265' 
'libsamplerate'
+ 'opencore-amr' 'yasm' 'mesa' 'libvpx' 'libpulse' 'libva' 
'intltool' 'sqlite'
+ 'libvdpau' 'libdca' 'fribidi' 'glu' 'qt5-tools' 'twolame' 
'libfdk-aac' 'libass')
+options=('!emptydirs')
+source=(https://downloads.sourceforge.net/avidemux/avidemux_${pkgver}.tar.gz
+log.diff qt-5.15.diff)
+sha256sums=('7db0ac01c8255279a2c360ecb2725c27ea8a2c5bd1f38aeafabfed33ea588da9'
+'8b751d137037f22fd4ae6750709014bcf61269a18f1c32e1a91f481285c807aa'
+'255a2446d493503dc237482f6fe26e2186f0ea0ef43ac9e17b8059fe232aad43')
+sha512sums=('e6d0a9eb525d82d0bdecb41b50eaa5894134064148a1889e4bba704d512bb53f871f797444668a0601fecf4e0e61a1f1727b1c59d543860bb64c1a294eb9bf42'
+
'bbae5b4a549113b12e728c4c0ac8c1c92a0b7500be8dcecc791c16c9a913406feaa9f7bc477985970a920d2df391cc9392457512d84b9c4b829981cc072f2b2e'
+
'ed78c2a3e4ede4fed1d3ea353c7dc350dc73050f76c8112cb24d97b3eda01f7c186d5db199f71f56953c5e5d8104de44dc0e84e1bfa01b6647c050c11fc375f2')
+
+prepare() {
+  cd ${pkgbase}_${pkgver}
+  patch -Np1 -i ../log.diff  # don't hide the build output
+  patch -Np1 -i ../qt-5.15.diff  # fix build against Qt 5.15.0
+  sed -i 's|../avidemux/qt4|../avidemux/qt4 
-DLRELEASE_EXECUTABLE=/usr/bin/lrelease-qt5|' bootStrap.bash
+  sed -e 's|0.19|1.0|' -i avidemux_plugins/ADM_videoFilters6/ass/CMakeLists.txt
+}
+
+build() {
+  cd ${pkgbase}_${pkgver}
+  bash bootStrap.bash --with-core --with-cli --with-plugins
+}
+
+package_avidemux-cli() {
+  depends=('libxml2' 'fontconfig' 'sqlite' 'libvpx' 'libva' 'libvdpau')
+  optdepends=('lame: for the corresponding audio encoder plugin'
+  'faac: for the corresponding audio encoder plugin'
+  'faad2: for the corresponding audio decoder plugin'
+  'opus: for the corresponding audio decoder plugin'
+  'opencore-amr: for the corresponding audio decoder plugin'
+  'jack: for the corresponding audio device plugin'
+  'libpulse: for the corresponding audio device plugin'
+  'x264: for the corresponding video encoder plugin'
+  'libx264: for the corresponding video encoder plugin'
+  'x265: for the corresponding video encoder plugin'
+  'xvidcore: for the corresponding video encoder plugin'
+  'qt5-base: for the QtScript scripting support'
+  'libdca: for the corresponding audio decoder plugin'
+  'libfdk-aac: for the corresponding audio decoder plugin'
+  'twolame: for the corresponding audio decoder plugin'
+  'libass: for the corresponding video filter plugin'
+  'fribidi: for the corresponding video filter plugin')
+
+  cd ${pkgbase}_${pkgver}
+  make -C buildCli DESTDIR="${pkgdir}" install
+  make -C buildCore DESTDIR="${pkgdir}" install
+  make -C buildPluginsCLI DESTDIR="${pkgdir}" install
+  make -C buildPluginsCommon DESTDIR="${pkgdir}" install
+
+  install -Dm 644 avidemux_icon.png "${pkgdir}/usr/share/pixmaps/avidemux.png"
+  install -Dm 644 man/avidemux.1 -t "${pkgdir}/usr/share/man/man1"
+}
+
+package_avidemux-qt() {
+  pkgdesc='Graphical tool to edit video (filter/re-encode/split) - Qt GUI'
+  depends=("avidemux-cli=${pkgver}" 'qt5-base' 'x264' 'x265' 'glu' 'libxv' 
'desktop-file-utils')
+  replaces=('avidemux-gtk')
+
+  cd ${pkgbase}_${pkgver}
+  make -C buildQt5 DESTDIR="${pkgdir}" install
+  make -C buildPluginsQt5 DESTDIR="${pkgdir}" install
+  #install -Dm 644 avidemux-qt.desktop -t "${pkgdir}/usr/share/applications"
+}
+
+# vim: ts=2 sw=2 et:

Copied: avidemux/rep

[arch-commits] Commit in avidemux/repos (4 files)

2017-11-01 Thread Levente Polyak
Date: Wednesday, November 1, 2017 @ 19:21:16
  Author: anthraxx
Revision: 308827

archrelease: copy trunk to staging-i686, staging-x86_64

Added:
  avidemux/repos/staging-i686/
  avidemux/repos/staging-i686/PKGBUILD
(from rev 308826, avidemux/trunk/PKGBUILD)
  avidemux/repos/staging-x86_64/
  avidemux/repos/staging-x86_64/PKGBUILD
(from rev 308826, avidemux/trunk/PKGBUILD)

-+
 staging-i686/PKGBUILD   |   72 ++
 staging-x86_64/PKGBUILD |   72 ++
 2 files changed, 144 insertions(+)

Copied: avidemux/repos/staging-i686/PKGBUILD (from rev 308826, 
avidemux/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2017-11-01 19:21:16 UTC (rev 308827)
@@ -0,0 +1,72 @@
+# Maintainer: Levente Polyak 
+# Maintainer: Eric Bélanger 
+
+pkgbase=avidemux
+pkgname=('avidemux-cli' 'avidemux-qt')
+pkgver=2.7.0
+pkgrel=2
+pkgdesc='Graphical tool to edit video (filter/re-encode/split)'
+url='http://fixounet.free.fr/avidemux/'
+arch=('i686' 'x86_64')
+license=('GPL2')
+makedepends=('cmake' 'libxslt' 'qt5-base' 'jack' 'libvorbis' 'libxv' 'opus' 
'desktop-file-utils'
+ 'alsa-lib' 'lame' 'xvidcore' 'faad2' 'faac' 'x264' 'libx264' 
'x265' 'libsamplerate'
+ 'opencore-amr' 'yasm' 'mesa' 'libvpx' 'libpulse' 'libva' 
'intltool' 'sqlite'
+ 'libvdpau' 'libdca' 'fribidi' 'glu' 'qt5-tools')
+options=('!emptydirs')
+source=(https://downloads.sourceforge.net/avidemux/avidemux_${pkgver}.tar.gz)
+sha256sums=('fe1d6b794c0d94922428ff84a931264a90c39a5ffe965e03ab7ae0ce71a2c4ad')
+sha512sums=('7c92213d3bd2849dbdb5a1aff2acd6da231fd76c561b756fbf4a1d5a41e9705d609d7a35b6ca6b77ceb3bf5138f861cd24ed16d8fcec4fd713f09a2ff07e9015')
+
+prepare() {
+  cd ${pkgbase}_${pkgver}
+  sed -i 's|../avidemux/qt4|../avidemux/qt4 
-DLRELEASE_EXECUTABLE=/usr/bin/lrelease-qt5|' bootStrap.bash
+  cp avidemux2.desktop avidemux-qt.desktop
+  sed -ri 's|(Name=).*|\1avidemux (Qt)|' avidemux-qt.desktop
+  sed -ri 's|(Exec=).*|\1avidemux3_qt5|' avidemux-qt.desktop
+}
+
+build() {
+  cd ${pkgbase}_${pkgver}
+  bash bootStrap.bash --with-core --with-cli --with-plugins
+}
+
+package_avidemux-cli() {
+  depends=('libxml2' 'fontconfig' 'libvpx' 'libva' 'sqlite')
+  optdepends=('lame: for the corresponding audio encoder plugin'
+  'faac: for the corresponding audio encoder plugin'
+  'faad2: for the corresponding audio decoder plugin'
+  'opus: for the corresponding audio decoder plugin'
+  'opencore-amr: for the corresponding audio decoder plugin'
+  'jack: for the corresponding audio device plugin'
+  'libpulse: for the corresponding audio device plugin'
+  'x264: for the corresponding video encoder plugin'
+  'libx264: for the corresponding video encoder plugin'
+  'x265: for the corresponding video encoder plugin'
+  'xvidcore: for the corresponding video encoder plugin'
+  'qt5-base: for the QtScript scripting support'
+  'libdca: for the corresponding audio decoder plugin'
+  'fribidi: for the corresponding video filter plugin')
+
+  cd ${pkgbase}_${pkgver}
+  make -C buildCli DESTDIR="${pkgdir}" install
+  make -C buildCore DESTDIR="${pkgdir}" install
+  make -C buildPluginsCLI DESTDIR="${pkgdir}" install
+  make -C buildPluginsCommon DESTDIR="${pkgdir}" install
+
+  install -Dm 644 avidemux_icon.png "${pkgdir}/usr/share/pixmaps/avidemux.png"
+  install -Dm 644 man/avidemux.1 -t "${pkgdir}/usr/share/man/man1"
+}
+
+package_avidemux-qt() {
+  pkgdesc='Graphical tool to edit video (filter/re-encode/split) - Qt GUI'
+  depends=("avidemux-cli=${pkgver}" 'qt5-base' 'x264' 'x265' 'libx264' 'glu' 
'libxv' 'desktop-file-utils')
+  replaces=('avidemux-gtk')
+
+  cd ${pkgbase}_${pkgver}
+  make -C buildQt5 DESTDIR="${pkgdir}" install
+  make -C buildPluginsQt5 DESTDIR="${pkgdir}" install
+  install -Dm 644 avidemux-qt.desktop -t "${pkgdir}/usr/share/applications"
+}
+
+# vim: ts=2 sw=2 et:

Copied: avidemux/repos/staging-x86_64/PKGBUILD (from rev 308826, 
avidemux/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2017-11-01 19:21:16 UTC (rev 308827)
@@ -0,0 +1,72 @@
+# Maintainer: Levente Polyak 
+# Maintainer: Eric Bélanger 
+
+pkgbase=avidemux
+pkgname=('avidemux-cli' 'avidemux-qt')
+pkgver=2.7.0
+pkgrel=2
+pkgdesc='Graphical tool to edit video (filter/re-encode/split)'
+url='http://fixounet.free.fr/avidemux/'
+arch=('i686' 'x86_64')
+license=('GPL2')
+makedepends=('cmake' 'libxslt' 'qt5-base' 'jack' 'libvorbis' 'libxv' 'opus' 
'desktop-file-utils'
+ 'alsa-lib' 'lame' 'xvidcore' 'faad2' 'faac' 'x264' 'libx264' 
'x

[arch-commits] Commit in avidemux/repos (4 files)

2017-08-21 Thread Levente Polyak
Date: Monday, August 21, 2017 @ 11:27:52
  Author: anthraxx
Revision: 303210

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  avidemux/repos/extra-i686/PKGBUILD
(from rev 303209, avidemux/trunk/PKGBUILD)
  avidemux/repos/extra-x86_64/PKGBUILD
(from rev 303209, avidemux/trunk/PKGBUILD)
Deleted:
  avidemux/repos/extra-i686/PKGBUILD
  avidemux/repos/extra-x86_64/PKGBUILD

---+
 /PKGBUILD |  144 
 extra-i686/PKGBUILD   |   71 ---
 extra-x86_64/PKGBUILD |   71 ---
 3 files changed, 144 insertions(+), 142 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-08-21 11:27:42 UTC (rev 303209)
+++ extra-i686/PKGBUILD 2017-08-21 11:27:52 UTC (rev 303210)
@@ -1,71 +0,0 @@
-# Maintainer: Levente Polyak 
-# Maintainer: Eric Bélanger 
-
-pkgbase=avidemux
-pkgname=('avidemux-cli' 'avidemux-qt')
-pkgver=2.6.20
-pkgrel=2
-pkgdesc='Graphical tool to edit video (filter/re-encode/split)'
-url='http://fixounet.free.fr/avidemux/'
-arch=('i686' 'x86_64')
-license=('GPL2')
-makedepends=('cmake' 'libxslt' 'qt5-base' 'jack' 'libvorbis' 'libxv' 'opus' 
'desktop-file-utils'
- 'alsa-lib' 'lame' 'xvidcore' 'faad2' 'faac' 'x264' 'libx264' 
'x265' 'libsamplerate'
- 'opencore-amr' 'yasm' 'mesa' 'libvpx' 'libpulse' 'libva' 
'intltool' 'sqlite'
- 'libvdpau' 'libdca' 'fribidi' 'glu' 'qt5-tools' 'pkg-config')
-options=('!emptydirs')
-source=(https://downloads.sourceforge.net/avidemux/avidemux_${pkgver}.tar.gz)
-sha512sums=('d01d0fc24a3004770bd3923c2debc4fa2752eb71df08cfe423746b9c44a2562ca01d82965ed2563b99572a4bed8034b79487199ce330208b51a3b7f87ccf7103')
-
-prepare() {
-  cd ${pkgbase}_${pkgver}
-  sed -i 's|../avidemux/qt4|../avidemux/qt4 
-DLRELEASE_EXECUTABLE=/usr/bin/lrelease-qt5|' bootStrap.bash
-  cp avidemux2.desktop avidemux-qt.desktop
-  sed -ri 's|(Name=).*|\1avidemux (Qt)|' avidemux-qt.desktop
-  sed -ri 's|(Exec=).*|\1avidemux3_qt5|' avidemux-qt.desktop
-}
-
-build() {
-  cd ${pkgbase}_${pkgver}
-  bash bootStrap.bash --with-core --with-cli --with-plugins
-}
-
-package_avidemux-cli() {
-  depends=('libxml2' 'fontconfig' 'libvpx' 'libva' 'sqlite')
-  optdepends=('lame: for the corresponding audio encoder plugin'
-  'faac: for the corresponding audio encoder plugin'
-  'faad2: for the corresponding audio decoder plugin'
-  'opus: for the corresponding audio decoder plugin'
-  'opencore-amr: for the corresponding audio decoder plugin'
-  'jack: for the corresponding audio device plugin'
-  'libpulse: for the corresponding audio device plugin'
-  'x264: for the corresponding video encoder plugin'
-  'libx264: for the corresponding video encoder plugin'
-  'x265: for the corresponding video encoder plugin'
-  'xvidcore: for the corresponding video encoder plugin'
-  'qt5-base: for the QtScript scripting support'
-  'libdca: for the corresponding audio decoder plugin'
-  'fribidi: for the corresponding video filter plugin')
-
-  cd ${pkgbase}_${pkgver}
-  make -C buildCli DESTDIR="${pkgdir}" install
-  make -C buildCore DESTDIR="${pkgdir}" install
-  make -C buildPluginsCLI DESTDIR="${pkgdir}" install
-  make -C buildPluginsCommon DESTDIR="${pkgdir}" install
-
-  install -Dm 644 avidemux_icon.png "${pkgdir}/usr/share/pixmaps/avidemux.png"
-  install -Dm 644 man/avidemux.1 -t "${pkgdir}/usr/share/man/man1"
-}
-
-package_avidemux-qt() {
-  pkgdesc='Graphical tool to edit video (filter/re-encode/split) - Qt GUI'
-  depends=("avidemux-cli=${pkgver}" 'qt5-base' 'x264' 'x265' 'libx264' 'glu' 
'libxv' 'desktop-file-utils')
-  replaces=('avidemux-gtk')
-
-  cd ${pkgbase}_${pkgver}
-  make -C buildQt5 DESTDIR="${pkgdir}" install
-  make -C buildPluginsQt5 DESTDIR="${pkgdir}" install
-  install -Dm 644 avidemux-qt.desktop -t "${pkgdir}/usr/share/applications"
-}
-
-# vim: ts=2 sw=2 et:

Copied: avidemux/repos/extra-i686/PKGBUILD (from rev 303209, 
avidemux/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2017-08-21 11:27:52 UTC (rev 303210)
@@ -0,0 +1,72 @@
+# Maintainer: Levente Polyak 
+# Maintainer: Eric Bélanger 
+
+pkgbase=avidemux
+pkgname=('avidemux-cli' 'avidemux-qt')
+pkgver=2.7.0
+pkgrel=1
+pkgdesc='Graphical tool to edit video (filter/re-encode/split)'
+url='http://fixounet.free.fr/avidemux/'
+arch=('i686' 'x86_64')
+license=('GPL2')
+makedepends=('cmake' 'libxslt' 'qt5-base' 'jack' 'libvorbis' 'libxv' 'opus' 
'desktop-file-utils'
+ 'alsa-lib' 'lame' 'xvidcore' 'faad2' 'faac' 'x264' 'libx264' 
'x265' 'libsamplerate'
+ 'opencore-amr' 'yasm' 'mesa' 'libvpx' 'libpulse' 'libva' 
'intltool' 

[arch-commits] Commit in avidemux/repos (4 files)

2017-08-15 Thread Maxime Gauduin
Date: Tuesday, August 15, 2017 @ 12:58:44
  Author: alucryd
Revision: 302206

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  avidemux/repos/extra-i686/PKGBUILD
(from rev 302205, avidemux/trunk/PKGBUILD)
  avidemux/repos/extra-x86_64/PKGBUILD
(from rev 302205, avidemux/trunk/PKGBUILD)
Deleted:
  avidemux/repos/extra-i686/PKGBUILD
  avidemux/repos/extra-x86_64/PKGBUILD

---+
 /PKGBUILD |  142 
 extra-i686/PKGBUILD   |   71 
 extra-x86_64/PKGBUILD |   71 
 3 files changed, 142 insertions(+), 142 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-08-15 12:58:26 UTC (rev 302205)
+++ extra-i686/PKGBUILD 2017-08-15 12:58:44 UTC (rev 302206)
@@ -1,71 +0,0 @@
-# Maintainer: Levente Polyak 
-# Maintainer: Eric Bélanger 
-
-pkgbase=avidemux
-pkgname=('avidemux-cli' 'avidemux-qt')
-pkgver=2.6.20
-pkgrel=1
-pkgdesc='Graphical tool to edit video (filter/re-encode/split)'
-url='http://fixounet.free.fr/avidemux/'
-arch=('i686' 'x86_64')
-license=('GPL2')
-makedepends=('cmake' 'libxslt' 'qt5-base' 'jack' 'libvorbis' 'libxv' 'opus' 
'desktop-file-utils'
- 'alsa-lib' 'lame' 'xvidcore' 'faad2' 'faac' 'x264' 'libx264' 
'x265' 'libsamplerate'
- 'opencore-amr' 'yasm' 'mesa' 'libvpx' 'libpulse' 'libva' 
'intltool' 'sqlite'
- 'libvdpau' 'libdca' 'fribidi' 'glu' 'qt5-tools' 'pkg-config')
-options=('!emptydirs')
-source=(https://downloads.sourceforge.net/avidemux/avidemux_${pkgver}.tar.gz)
-sha512sums=('d01d0fc24a3004770bd3923c2debc4fa2752eb71df08cfe423746b9c44a2562ca01d82965ed2563b99572a4bed8034b79487199ce330208b51a3b7f87ccf7103')
-
-prepare() {
-  cd ${pkgbase}_${pkgver}
-  sed -i 's|../avidemux/qt4|../avidemux/qt4 
-DLRELEASE_EXECUTABLE=/usr/bin/lrelease-qt5|' bootStrap.bash
-  cp avidemux2.desktop avidemux-qt.desktop
-  sed -ri 's|(Name=).*|\1avidemux (Qt)|' avidemux-qt.desktop
-  sed -ri 's|(Exec=).*|\1avidemux3_qt5|' avidemux-qt.desktop
-}
-
-build() {
-  cd ${pkgbase}_${pkgver}
-  bash bootStrap.bash --with-core --with-cli --with-plugins
-}
-
-package_avidemux-cli() {
-  depends=('libxml2' 'fontconfig' 'libvpx' 'libva' 'sqlite')
-  optdepends=('lame: for the corresponding audio encoder plugin'
-  'faac: for the corresponding audio encoder plugin'
-  'faad2: for the corresponding audio decoder plugin'
-  'opus: for the corresponding audio decoder plugin'
-  'opencore-amr: for the corresponding audio decoder plugin'
-  'jack: for the corresponding audio device plugin'
-  'libpulse: for the corresponding audio device plugin'
-  'x264: for the corresponding video encoder plugin'
-  'libx264: for the corresponding video encoder plugin'
-  'x265: for the corresponding video encoder plugin'
-  'xvidcore: for the corresponding video encoder plugin'
-  'qt5-base: for the QtScript scripting support'
-  'libdca: for the corresponding audio decoder plugin'
-  'fribidi: for the corresponding video filter plugin')
-
-  cd ${pkgbase}_${pkgver}
-  make -C buildCli DESTDIR="${pkgdir}" install
-  make -C buildCore DESTDIR="${pkgdir}" install
-  make -C buildPluginsCLI DESTDIR="${pkgdir}" install
-  make -C buildPluginsCommon DESTDIR="${pkgdir}" install
-
-  install -Dm 644 avidemux_icon.png "${pkgdir}/usr/share/pixmaps/avidemux.png"
-  install -Dm 644 man/avidemux.1 -t "${pkgdir}/usr/share/man/man1"
-}
-
-package_avidemux-qt() {
-  pkgdesc='Graphical tool to edit video (filter/re-encode/split) - Qt GUI'
-  depends=("avidemux-cli=${pkgver}" 'qt5-base' 'x264' 'x265' 'libx264' 'glu' 
'libxv' 'desktop-file-utils')
-  replaces=('avidemux-gtk')
-
-  cd ${pkgbase}_${pkgver}
-  make -C buildQt5 DESTDIR="${pkgdir}" install
-  make -C buildPluginsQt5 DESTDIR="${pkgdir}" install
-  install -Dm 644 avidemux-qt.desktop -t "${pkgdir}/usr/share/applications"
-}
-
-# vim: ts=2 sw=2 et:

Copied: avidemux/repos/extra-i686/PKGBUILD (from rev 302205, 
avidemux/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2017-08-15 12:58:44 UTC (rev 302206)
@@ -0,0 +1,71 @@
+# Maintainer: Levente Polyak 
+# Maintainer: Eric Bélanger 
+
+pkgbase=avidemux
+pkgname=('avidemux-cli' 'avidemux-qt')
+pkgver=2.6.20
+pkgrel=2
+pkgdesc='Graphical tool to edit video (filter/re-encode/split)'
+url='http://fixounet.free.fr/avidemux/'
+arch=('i686' 'x86_64')
+license=('GPL2')
+makedepends=('cmake' 'libxslt' 'qt5-base' 'jack' 'libvorbis' 'libxv' 'opus' 
'desktop-file-utils'
+ 'alsa-lib' 'lame' 'xvidcore' 'faad2' 'faac' 'x264' 'libx264' 
'x265' 'libsamplerate'
+ 'opencore-amr' 'yasm' 'mesa' 'libvpx' 'libpulse' 'libva' 
'intltoo

[arch-commits] Commit in avidemux/repos (4 files)

2017-05-13 Thread Levente Polyak
Date: Saturday, May 13, 2017 @ 19:37:57
  Author: anthraxx
Revision: 295973

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  avidemux/repos/extra-i686/PKGBUILD
(from rev 295972, avidemux/trunk/PKGBUILD)
  avidemux/repos/extra-x86_64/PKGBUILD
(from rev 295972, avidemux/trunk/PKGBUILD)
Deleted:
  avidemux/repos/extra-i686/PKGBUILD
  avidemux/repos/extra-x86_64/PKGBUILD

---+
 /PKGBUILD |  142 
 extra-i686/PKGBUILD   |   71 
 extra-x86_64/PKGBUILD |   71 
 3 files changed, 142 insertions(+), 142 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-05-13 19:36:16 UTC (rev 295972)
+++ extra-i686/PKGBUILD 2017-05-13 19:37:57 UTC (rev 295973)
@@ -1,71 +0,0 @@
-# Maintainer: Levente Polyak 
-# Maintainer: Eric Bélanger 
-
-pkgbase=avidemux
-pkgname=('avidemux-cli' 'avidemux-qt')
-pkgver=2.6.19
-pkgrel=2
-pkgdesc='Graphical tool to edit video (filter/re-encode/split)'
-url='http://fixounet.free.fr/avidemux/'
-arch=('i686' 'x86_64')
-license=('GPL2')
-makedepends=('cmake' 'libxslt' 'qt5-base' 'jack' 'libvorbis' 'libxv' 'opus' 
'desktop-file-utils'
- 'alsa-lib' 'lame' 'xvidcore' 'faad2' 'faac' 'x264' 'libx264' 
'x265' 'libsamplerate'
- 'opencore-amr' 'yasm' 'mesa' 'libvpx' 'libpulse' 'libva' 
'intltool' 'sqlite'
- 'libvdpau' 'libdca' 'fribidi' 'glu' 'qt5-tools' 'pkg-config')
-options=('!emptydirs')
-source=(https://downloads.sourceforge.net/avidemux/avidemux_${pkgver}.tar.gz)
-sha512sums=('883a7ca1e195b64ff20835d1f0d904910dcf9b5950c634c535e261c9bfd4eb625720bec64688d6ba60235ad83f5e959b2eb4094877fa7c0e196e09f23c0b44a7')
-
-prepare() {
-  cd ${pkgbase}_${pkgver}
-  sed -i 's|../avidemux/qt4|../avidemux/qt4 
-DLRELEASE_EXECUTABLE=/usr/bin/lrelease-qt5|' bootStrap.bash
-  cp avidemux2.desktop avidemux-qt.desktop
-  sed -ri 's|(Name=).*|\1avidemux (Qt)|' avidemux-qt.desktop
-  sed -ri 's|(Exec=).*|\1avidemux3_qt5|' avidemux-qt.desktop
-}
-
-build() {
-  cd ${pkgbase}_${pkgver}
-  bash bootStrap.bash --with-core --with-cli --with-plugins
-}
-
-package_avidemux-cli() {
-  depends=('libxml2' 'fontconfig' 'libvpx' 'libva' 'sqlite')
-  optdepends=('lame: for the corresponding audio encoder plugin'
-  'faac: for the corresponding audio encoder plugin'
-  'faad2: for the corresponding audio decoder plugin'
-  'opus: for the corresponding audio decoder plugin'
-  'opencore-amr: for the corresponding audio decoder plugin'
-  'jack: for the corresponding audio device plugin'
-  'libpulse: for the corresponding audio device plugin'
-  'x264: for the corresponding video encoder plugin'
-  'libx264: for the corresponding video encoder plugin'
-  'x265: for the corresponding video encoder plugin'
-  'xvidcore: for the corresponding video encoder plugin'
-  'qt5-base: for the QtScript scripting support'
-  'libdca: for the corresponding audio decoder plugin'
-  'fribidi: for the corresponding video filter plugin')
-
-  cd ${pkgbase}_${pkgver}
-  make -C buildCli DESTDIR="${pkgdir}" install
-  make -C buildCore DESTDIR="${pkgdir}" install
-  make -C buildPluginsCLI DESTDIR="${pkgdir}" install
-  make -C buildPluginsCommon DESTDIR="${pkgdir}" install
-
-  install -Dm 644 avidemux_icon.png "${pkgdir}/usr/share/pixmaps/avidemux.png"
-  install -Dm 644 man/avidemux.1 -t "${pkgdir}/usr/share/man/man1"
-}
-
-package_avidemux-qt() {
-  pkgdesc='Graphical tool to edit video (filter/re-encode/split) - Qt GUI'
-  depends=("avidemux-cli=${pkgver}" 'qt5-base' 'x264' 'x265' 'libx264' 'glu' 
'libxv' 'desktop-file-utils')
-  replaces=('avidemux-gtk')
-
-  cd ${pkgbase}_${pkgver}
-  make -C buildQt5 DESTDIR="${pkgdir}" install
-  make -C buildPluginsQt5 DESTDIR="${pkgdir}" install
-  install -Dm 644 avidemux-qt.desktop -t "${pkgdir}/usr/share/applications"
-}
-
-# vim: ts=2 sw=2 et:

Copied: avidemux/repos/extra-i686/PKGBUILD (from rev 295972, 
avidemux/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2017-05-13 19:37:57 UTC (rev 295973)
@@ -0,0 +1,71 @@
+# Maintainer: Levente Polyak 
+# Maintainer: Eric Bélanger 
+
+pkgbase=avidemux
+pkgname=('avidemux-cli' 'avidemux-qt')
+pkgver=2.6.20
+pkgrel=1
+pkgdesc='Graphical tool to edit video (filter/re-encode/split)'
+url='http://fixounet.free.fr/avidemux/'
+arch=('i686' 'x86_64')
+license=('GPL2')
+makedepends=('cmake' 'libxslt' 'qt5-base' 'jack' 'libvorbis' 'libxv' 'opus' 
'desktop-file-utils'
+ 'alsa-lib' 'lame' 'xvidcore' 'faad2' 'faac' 'x264' 'libx264' 
'x265' 'libsamplerate'
+ 'opencore-amr' 'yasm' 'mesa' 'libvpx' 'libpulse' 'libva' 
'intltool

[arch-commits] Commit in avidemux/repos (4 files)

2017-04-26 Thread Maxime Gauduin
Date: Wednesday, April 26, 2017 @ 19:04:52
  Author: alucryd
Revision: 294787

archrelease: copy trunk to staging-i686, staging-x86_64

Added:
  avidemux/repos/staging-i686/
  avidemux/repos/staging-i686/PKGBUILD
(from rev 294786, avidemux/trunk/PKGBUILD)
  avidemux/repos/staging-x86_64/
  avidemux/repos/staging-x86_64/PKGBUILD
(from rev 294786, avidemux/trunk/PKGBUILD)

-+
 staging-i686/PKGBUILD   |   71 ++
 staging-x86_64/PKGBUILD |   71 ++
 2 files changed, 142 insertions(+)

Copied: avidemux/repos/staging-i686/PKGBUILD (from rev 294786, 
avidemux/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2017-04-26 19:04:52 UTC (rev 294787)
@@ -0,0 +1,71 @@
+# Maintainer: Levente Polyak 
+# Maintainer: Eric Bélanger 
+
+pkgbase=avidemux
+pkgname=('avidemux-cli' 'avidemux-qt')
+pkgver=2.6.19
+pkgrel=2
+pkgdesc='Graphical tool to edit video (filter/re-encode/split)'
+url='http://fixounet.free.fr/avidemux/'
+arch=('i686' 'x86_64')
+license=('GPL2')
+makedepends=('cmake' 'libxslt' 'qt5-base' 'jack' 'libvorbis' 'libxv' 'opus' 
'desktop-file-utils'
+ 'alsa-lib' 'lame' 'xvidcore' 'faad2' 'faac' 'x264' 'libx264' 
'x265' 'libsamplerate'
+ 'opencore-amr' 'yasm' 'mesa' 'libvpx' 'libpulse' 'libva' 
'intltool' 'sqlite'
+ 'libvdpau' 'libdca' 'fribidi' 'glu' 'qt5-tools' 'pkg-config')
+options=('!emptydirs')
+source=(https://downloads.sourceforge.net/avidemux/avidemux_${pkgver}.tar.gz)
+sha512sums=('883a7ca1e195b64ff20835d1f0d904910dcf9b5950c634c535e261c9bfd4eb625720bec64688d6ba60235ad83f5e959b2eb4094877fa7c0e196e09f23c0b44a7')
+
+prepare() {
+  cd ${pkgbase}_${pkgver}
+  sed -i 's|../avidemux/qt4|../avidemux/qt4 
-DLRELEASE_EXECUTABLE=/usr/bin/lrelease-qt5|' bootStrap.bash
+  cp avidemux2.desktop avidemux-qt.desktop
+  sed -ri 's|(Name=).*|\1avidemux (Qt)|' avidemux-qt.desktop
+  sed -ri 's|(Exec=).*|\1avidemux3_qt5|' avidemux-qt.desktop
+}
+
+build() {
+  cd ${pkgbase}_${pkgver}
+  bash bootStrap.bash --with-core --with-cli --with-plugins
+}
+
+package_avidemux-cli() {
+  depends=('libxml2' 'fontconfig' 'libvpx' 'libva' 'sqlite')
+  optdepends=('lame: for the corresponding audio encoder plugin'
+  'faac: for the corresponding audio encoder plugin'
+  'faad2: for the corresponding audio decoder plugin'
+  'opus: for the corresponding audio decoder plugin'
+  'opencore-amr: for the corresponding audio decoder plugin'
+  'jack: for the corresponding audio device plugin'
+  'libpulse: for the corresponding audio device plugin'
+  'x264: for the corresponding video encoder plugin'
+  'libx264: for the corresponding video encoder plugin'
+  'x265: for the corresponding video encoder plugin'
+  'xvidcore: for the corresponding video encoder plugin'
+  'qt5-base: for the QtScript scripting support'
+  'libdca: for the corresponding audio decoder plugin'
+  'fribidi: for the corresponding video filter plugin')
+
+  cd ${pkgbase}_${pkgver}
+  make -C buildCli DESTDIR="${pkgdir}" install
+  make -C buildCore DESTDIR="${pkgdir}" install
+  make -C buildPluginsCLI DESTDIR="${pkgdir}" install
+  make -C buildPluginsCommon DESTDIR="${pkgdir}" install
+
+  install -Dm 644 avidemux_icon.png "${pkgdir}/usr/share/pixmaps/avidemux.png"
+  install -Dm 644 man/avidemux.1 -t "${pkgdir}/usr/share/man/man1"
+}
+
+package_avidemux-qt() {
+  pkgdesc='Graphical tool to edit video (filter/re-encode/split) - Qt GUI'
+  depends=("avidemux-cli=${pkgver}" 'qt5-base' 'x264' 'x265' 'libx264' 'glu' 
'libxv' 'desktop-file-utils')
+  replaces=('avidemux-gtk')
+
+  cd ${pkgbase}_${pkgver}
+  make -C buildQt5 DESTDIR="${pkgdir}" install
+  make -C buildPluginsQt5 DESTDIR="${pkgdir}" install
+  install -Dm 644 avidemux-qt.desktop -t "${pkgdir}/usr/share/applications"
+}
+
+# vim: ts=2 sw=2 et:

Copied: avidemux/repos/staging-x86_64/PKGBUILD (from rev 294786, 
avidemux/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2017-04-26 19:04:52 UTC (rev 294787)
@@ -0,0 +1,71 @@
+# Maintainer: Levente Polyak 
+# Maintainer: Eric Bélanger 
+
+pkgbase=avidemux
+pkgname=('avidemux-cli' 'avidemux-qt')
+pkgver=2.6.19
+pkgrel=2
+pkgdesc='Graphical tool to edit video (filter/re-encode/split)'
+url='http://fixounet.free.fr/avidemux/'
+arch=('i686' 'x86_64')
+license=('GPL2')
+makedepends=('cmake' 'libxslt' 'qt5-base' 'jack' 'libvorbis' 'libxv' 'opus' 
'desktop-file-utils'
+ 'alsa-lib' 'lame' 'xvidcore' 'faad2' 'faac' 'x264' 'libx264' 
'x265' 'libsamplerate'
+ 'opencore-amr' 'yasm' 'mesa' 'libv

[arch-commits] Commit in avidemux/repos (4 files)

2017-03-29 Thread Levente Polyak
Date: Wednesday, March 29, 2017 @ 20:25:34
  Author: anthraxx
Revision: 291826

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  avidemux/repos/testing-i686/PKGBUILD
(from rev 291825, avidemux/trunk/PKGBUILD)
  avidemux/repos/testing-x86_64/PKGBUILD
(from rev 291825, avidemux/trunk/PKGBUILD)
Deleted:
  avidemux/repos/testing-i686/PKGBUILD
  avidemux/repos/testing-x86_64/PKGBUILD

-+
 /PKGBUILD   |  142 ++
 testing-i686/PKGBUILD   |   71 ---
 testing-x86_64/PKGBUILD |   71 ---
 3 files changed, 142 insertions(+), 142 deletions(-)

Deleted: testing-i686/PKGBUILD
===
--- testing-i686/PKGBUILD   2017-03-29 20:25:21 UTC (rev 291825)
+++ testing-i686/PKGBUILD   2017-03-29 20:25:34 UTC (rev 291826)
@@ -1,71 +0,0 @@
-# Maintainer: Levente Polyak 
-# Maintainer: Eric Bélanger 
-
-pkgbase=avidemux
-pkgname=('avidemux-cli' 'avidemux-qt')
-pkgver=2.6.18
-pkgrel=2
-pkgdesc='Graphical tool to edit video (filter/re-encode/split)'
-url='http://fixounet.free.fr/avidemux/'
-arch=('i686' 'x86_64')
-license=('GPL2')
-makedepends=('cmake' 'libxslt' 'qt5-base' 'jack' 'libvorbis' 'libxv' 'opus' 
'desktop-file-utils'
- 'alsa-lib' 'lame' 'xvidcore' 'faad2' 'faac' 'x264' 'libx264' 
'x265' 'libsamplerate'
- 'opencore-amr' 'yasm' 'mesa' 'libvpx' 'libpulse' 'libva' 
'intltool' 'sqlite'
- 'libvdpau' 'libdca' 'fribidi' 'glu' 'qt5-tools' 'pkg-config')
-options=('!emptydirs')
-source=(https://downloads.sourceforge.net/avidemux/avidemux_${pkgver}.tar.gz)
-sha512sums=('e31304a8a3fd7116428255164e446d2ccf8acd8a65247b116a57009a64c2f454e1f143281aa5035f8f3c08380a3c8e7178c23bc019c78aed6176f5d25f7e0744')
-
-prepare() {
-  cd ${pkgbase}_${pkgver}
-  sed -i 's|../avidemux/qt4|../avidemux/qt4 
-DLRELEASE_EXECUTABLE=/usr/bin/lrelease-qt5|' bootStrap.bash
-  cp avidemux2.desktop avidemux-qt.desktop
-  sed -ri 's|(Name=).*|\1avidemux (Qt)|' avidemux-qt.desktop
-  sed -ri 's|(Exec=).*|\1avidemux3_qt5|' avidemux-qt.desktop
-}
-
-build() {
-  cd ${pkgbase}_${pkgver}
-  bash bootStrap.bash --with-core --with-cli --with-plugins
-}
-
-package_avidemux-cli() {
-  depends=('libxml2' 'fontconfig' 'libvpx' 'libva' 'sqlite')
-  optdepends=('lame: for the corresponding audio encoder plugin'
-  'faac: for the corresponding audio encoder plugin'
-  'faad2: for the corresponding audio decoder plugin'
-  'opus: for the corresponding audio decoder plugin'
-  'opencore-amr: for the corresponding audio decoder plugin'
-  'jack: for the corresponding audio device plugin'
-  'libpulse: for the corresponding audio device plugin'
-  'x264: for the corresponding video encoder plugin'
-  'libx264: for the corresponding video encoder plugin'
-  'x265: for the corresponding video encoder plugin'
-  'xvidcore: for the corresponding video encoder plugin'
-  'qt5-base: for the QtScript scripting support'
-  'libdca: for the corresponding audio decoder plugin'
-  'fribidi: for the corresponding video filter plugin')
-
-  cd ${pkgbase}_${pkgver}
-  make -C buildCli DESTDIR="${pkgdir}" install
-  make -C buildCore DESTDIR="${pkgdir}" install
-  make -C buildPluginsCLI DESTDIR="${pkgdir}" install
-  make -C buildPluginsCommon DESTDIR="${pkgdir}" install
-
-  install -Dm 644 avidemux_icon.png "${pkgdir}/usr/share/pixmaps/avidemux.png"
-  install -Dm 644 man/avidemux.1 -t "${pkgdir}/usr/share/man/man1"
-}
-
-package_avidemux-qt() {
-  pkgdesc='Graphical tool to edit video (filter/re-encode/split) - Qt GUI'
-  depends=("avidemux-cli=${pkgver}" 'qt5-base' 'x264' 'x265' 'libx264' 'glu' 
'libxv' 'desktop-file-utils')
-  replaces=('avidemux-gtk')
-
-  cd ${pkgbase}_${pkgver}
-  make -C buildQt5 DESTDIR="${pkgdir}" install
-  make -C buildPluginsQt5 DESTDIR="${pkgdir}" install
-  install -Dm 644 avidemux-qt.desktop -t "${pkgdir}/usr/share/applications"
-}
-
-# vim: ts=2 sw=2 et:

Copied: avidemux/repos/testing-i686/PKGBUILD (from rev 291825, 
avidemux/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2017-03-29 20:25:34 UTC (rev 291826)
@@ -0,0 +1,71 @@
+# Maintainer: Levente Polyak 
+# Maintainer: Eric Bélanger 
+
+pkgbase=avidemux
+pkgname=('avidemux-cli' 'avidemux-qt')
+pkgver=2.6.19
+pkgrel=1
+pkgdesc='Graphical tool to edit video (filter/re-encode/split)'
+url='http://fixounet.free.fr/avidemux/'
+arch=('i686' 'x86_64')
+license=('GPL2')
+makedepends=('cmake' 'libxslt' 'qt5-base' 'jack' 'libvorbis' 'libxv' 'opus' 
'desktop-file-utils'
+ 'alsa-lib' 'lame' 'xvidcore' 'faad2' 'faac' 'x264' 'libx264' 
'x265' 'libsamplerate'
+ 'opencore-am

[arch-commits] Commit in avidemux/repos (4 files)

2017-03-26 Thread Maxime Gauduin
Date: Sunday, March 26, 2017 @ 18:14:34
  Author: alucryd
Revision: 291671

archrelease: copy trunk to staging-i686, staging-x86_64

Added:
  avidemux/repos/staging-i686/
  avidemux/repos/staging-i686/PKGBUILD
(from rev 291670, avidemux/trunk/PKGBUILD)
  avidemux/repos/staging-x86_64/
  avidemux/repos/staging-x86_64/PKGBUILD
(from rev 291670, avidemux/trunk/PKGBUILD)

-+
 staging-i686/PKGBUILD   |   71 ++
 staging-x86_64/PKGBUILD |   71 ++
 2 files changed, 142 insertions(+)

Copied: avidemux/repos/staging-i686/PKGBUILD (from rev 291670, 
avidemux/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2017-03-26 18:14:34 UTC (rev 291671)
@@ -0,0 +1,71 @@
+# Maintainer: Levente Polyak 
+# Maintainer: Eric Bélanger 
+
+pkgbase=avidemux
+pkgname=('avidemux-cli' 'avidemux-qt')
+pkgver=2.6.18
+pkgrel=2
+pkgdesc='Graphical tool to edit video (filter/re-encode/split)'
+url='http://fixounet.free.fr/avidemux/'
+arch=('i686' 'x86_64')
+license=('GPL2')
+makedepends=('cmake' 'libxslt' 'qt5-base' 'jack' 'libvorbis' 'libxv' 'opus' 
'desktop-file-utils'
+ 'alsa-lib' 'lame' 'xvidcore' 'faad2' 'faac' 'x264' 'libx264' 
'x265' 'libsamplerate'
+ 'opencore-amr' 'yasm' 'mesa' 'libvpx' 'libpulse' 'libva' 
'intltool' 'sqlite'
+ 'libvdpau' 'libdca' 'fribidi' 'glu' 'qt5-tools' 'pkg-config')
+options=('!emptydirs')
+source=(https://downloads.sourceforge.net/avidemux/avidemux_${pkgver}.tar.gz)
+sha512sums=('e31304a8a3fd7116428255164e446d2ccf8acd8a65247b116a57009a64c2f454e1f143281aa5035f8f3c08380a3c8e7178c23bc019c78aed6176f5d25f7e0744')
+
+prepare() {
+  cd ${pkgbase}_${pkgver}
+  sed -i 's|../avidemux/qt4|../avidemux/qt4 
-DLRELEASE_EXECUTABLE=/usr/bin/lrelease-qt5|' bootStrap.bash
+  cp avidemux2.desktop avidemux-qt.desktop
+  sed -ri 's|(Name=).*|\1avidemux (Qt)|' avidemux-qt.desktop
+  sed -ri 's|(Exec=).*|\1avidemux3_qt5|' avidemux-qt.desktop
+}
+
+build() {
+  cd ${pkgbase}_${pkgver}
+  bash bootStrap.bash --with-core --with-cli --with-plugins
+}
+
+package_avidemux-cli() {
+  depends=('libxml2' 'fontconfig' 'libvpx' 'libva' 'sqlite')
+  optdepends=('lame: for the corresponding audio encoder plugin'
+  'faac: for the corresponding audio encoder plugin'
+  'faad2: for the corresponding audio decoder plugin'
+  'opus: for the corresponding audio decoder plugin'
+  'opencore-amr: for the corresponding audio decoder plugin'
+  'jack: for the corresponding audio device plugin'
+  'libpulse: for the corresponding audio device plugin'
+  'x264: for the corresponding video encoder plugin'
+  'libx264: for the corresponding video encoder plugin'
+  'x265: for the corresponding video encoder plugin'
+  'xvidcore: for the corresponding video encoder plugin'
+  'qt5-base: for the QtScript scripting support'
+  'libdca: for the corresponding audio decoder plugin'
+  'fribidi: for the corresponding video filter plugin')
+
+  cd ${pkgbase}_${pkgver}
+  make -C buildCli DESTDIR="${pkgdir}" install
+  make -C buildCore DESTDIR="${pkgdir}" install
+  make -C buildPluginsCLI DESTDIR="${pkgdir}" install
+  make -C buildPluginsCommon DESTDIR="${pkgdir}" install
+
+  install -Dm 644 avidemux_icon.png "${pkgdir}/usr/share/pixmaps/avidemux.png"
+  install -Dm 644 man/avidemux.1 -t "${pkgdir}/usr/share/man/man1"
+}
+
+package_avidemux-qt() {
+  pkgdesc='Graphical tool to edit video (filter/re-encode/split) - Qt GUI'
+  depends=("avidemux-cli=${pkgver}" 'qt5-base' 'x264' 'x265' 'libx264' 'glu' 
'libxv' 'desktop-file-utils')
+  replaces=('avidemux-gtk')
+
+  cd ${pkgbase}_${pkgver}
+  make -C buildQt5 DESTDIR="${pkgdir}" install
+  make -C buildPluginsQt5 DESTDIR="${pkgdir}" install
+  install -Dm 644 avidemux-qt.desktop -t "${pkgdir}/usr/share/applications"
+}
+
+# vim: ts=2 sw=2 et:

Copied: avidemux/repos/staging-x86_64/PKGBUILD (from rev 291670, 
avidemux/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2017-03-26 18:14:34 UTC (rev 291671)
@@ -0,0 +1,71 @@
+# Maintainer: Levente Polyak 
+# Maintainer: Eric Bélanger 
+
+pkgbase=avidemux
+pkgname=('avidemux-cli' 'avidemux-qt')
+pkgver=2.6.18
+pkgrel=2
+pkgdesc='Graphical tool to edit video (filter/re-encode/split)'
+url='http://fixounet.free.fr/avidemux/'
+arch=('i686' 'x86_64')
+license=('GPL2')
+makedepends=('cmake' 'libxslt' 'qt5-base' 'jack' 'libvorbis' 'libxv' 'opus' 
'desktop-file-utils'
+ 'alsa-lib' 'lame' 'xvidcore' 'faad2' 'faac' 'x264' 'libx264' 
'x265' 'libsamplerate'
+ 'opencore-amr' 'yasm' 'mesa' 'libvpx'

[arch-commits] Commit in avidemux/repos (4 files)

2017-01-07 Thread Levente Polyak
Date: Sunday, January 8, 2017 @ 02:50:26
  Author: anthraxx
Revision: 285544

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  avidemux/repos/extra-i686/PKGBUILD
(from rev 285543, avidemux/trunk/PKGBUILD)
  avidemux/repos/extra-x86_64/PKGBUILD
(from rev 285543, avidemux/trunk/PKGBUILD)
Deleted:
  avidemux/repos/extra-i686/PKGBUILD
  avidemux/repos/extra-x86_64/PKGBUILD

---+
 /PKGBUILD |  142 
 extra-i686/PKGBUILD   |   71 
 extra-x86_64/PKGBUILD |   71 
 3 files changed, 142 insertions(+), 142 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-01-08 02:50:11 UTC (rev 285543)
+++ extra-i686/PKGBUILD 2017-01-08 02:50:26 UTC (rev 285544)
@@ -1,71 +0,0 @@
-# Maintainer: Levente Polyak 
-# Maintainer: Eric Bélanger 
-
-pkgbase=avidemux
-pkgname=('avidemux-cli' 'avidemux-qt')
-pkgver=2.6.16
-pkgrel=1
-pkgdesc='Graphical tool to edit video (filter/re-encode/split)'
-url='http://fixounet.free.fr/avidemux/'
-arch=('i686' 'x86_64')
-license=('GPL2')
-makedepends=('cmake' 'libxslt' 'qt5-base' 'jack' 'libvorbis' 'libxv' 'opus' 
'desktop-file-utils'
- 'alsa-lib' 'lame' 'xvidcore' 'faad2' 'faac' 'x264' 'libx264' 
'x265' 'libsamplerate'
- 'opencore-amr' 'yasm' 'mesa' 'libvpx' 'libpulse' 'libva' 
'intltool' 'sqlite'
- 'libvdpau' 'libdca' 'fribidi' 'glu' 'qt5-tools' 'pkg-config')
-options=('!emptydirs')
-source=(https://downloads.sourceforge.net/avidemux/avidemux_${pkgver}.tar.gz)
-sha512sums=('617c36f6f0557ac6c4bda140f4efb262a3bc4529f49d2d34eabd3a6aeff1fda800fd2bb1e4b5ac542d4be099d763ee006555db12d57e5e19d795ecb83e569fa6')
-
-prepare() {
-  cd ${pkgbase}_${pkgver}
-  sed -i 's|../avidemux/qt4|../avidemux/qt4 
-DLRELEASE_EXECUTABLE=/usr/bin/lrelease-qt5|' bootStrap.bash
-  cp avidemux2.desktop avidemux-qt.desktop
-  sed -ri 's|(Name=).*|\1avidemux (Qt)|' avidemux-qt.desktop
-  sed -ri 's|(Exec=).*|\1avidemux3_qt5|' avidemux-qt.desktop
-}
-
-build() {
-  cd ${pkgbase}_${pkgver}
-  bash bootStrap.bash --with-core --with-cli --with-plugins
-}
-
-package_avidemux-cli() {
-  depends=('libxml2' 'fontconfig' 'libvpx' 'libva' 'sqlite')
-  optdepends=('lame: for the corresponding audio encoder plugin'
-  'faac: for the corresponding audio encoder plugin'
-  'faad2: for the corresponding audio decoder plugin'
-  'opus: for the corresponding audio decoder plugin'
-  'opencore-amr: for the corresponding audio decoder plugin'
-  'jack: for the corresponding audio device plugin'
-  'libpulse: for the corresponding audio device plugin'
-  'x264: for the corresponding video encoder plugin'
-  'libx264: for the corresponding video encoder plugin'
-  'x265: for the corresponding video encoder plugin'
-  'xvidcore: for the corresponding video encoder plugin'
-  'qt5-base: for the QtScript scripting support'
-  'libdca: for the corresponding audio decoder plugin'
-  'fribidi: for the corresponding video filter plugin')
-
-  cd ${pkgbase}_${pkgver}
-  make -C buildCli DESTDIR="${pkgdir}" install
-  make -C buildCore DESTDIR="${pkgdir}" install
-  make -C buildPluginsCLI DESTDIR="${pkgdir}" install
-  make -C buildPluginsCommon DESTDIR="${pkgdir}" install
-
-  install -Dm 644 avidemux_icon.png "${pkgdir}/usr/share/pixmaps/avidemux.png"
-  install -Dm 644 man/avidemux.1 -t "${pkgdir}/usr/share/man/man1"
-}
-
-package_avidemux-qt() {
-  pkgdesc='Graphical tool to edit video (filter/re-encode/split) - Qt GUI'
-  depends=("avidemux-cli=${pkgver}" 'qt5-base' 'x264' 'x265' 'libx264' 'glu' 
'libxv' 'desktop-file-utils')
-  replaces=('avidemux-gtk')
-
-  cd ${pkgbase}_${pkgver}
-  make -C buildQt5 DESTDIR="${pkgdir}" install
-  make -C buildPluginsQt5 DESTDIR="${pkgdir}" install
-  install -Dm 644 avidemux-qt.desktop -t "${pkgdir}/usr/share/applications"
-}
-
-# vim: ts=2 sw=2 et:

Copied: avidemux/repos/extra-i686/PKGBUILD (from rev 285543, 
avidemux/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2017-01-08 02:50:26 UTC (rev 285544)
@@ -0,0 +1,71 @@
+# Maintainer: Levente Polyak 
+# Maintainer: Eric Bélanger 
+
+pkgbase=avidemux
+pkgname=('avidemux-cli' 'avidemux-qt')
+pkgver=2.6.18
+pkgrel=1
+pkgdesc='Graphical tool to edit video (filter/re-encode/split)'
+url='http://fixounet.free.fr/avidemux/'
+arch=('i686' 'x86_64')
+license=('GPL2')
+makedepends=('cmake' 'libxslt' 'qt5-base' 'jack' 'libvorbis' 'libxv' 'opus' 
'desktop-file-utils'
+ 'alsa-lib' 'lame' 'xvidcore' 'faad2' 'faac' 'x264' 'libx264' 
'x265' 'libsamplerate'
+ 'opencore-amr' 'yasm' 'mesa' 'libvpx' 'libpulse' 'libva' 
'intltoo

[arch-commits] Commit in avidemux/repos (4 files)

2016-12-31 Thread Levente Polyak
Date: Saturday, December 31, 2016 @ 20:42:40
  Author: anthraxx
Revision: 285004

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  avidemux/repos/extra-i686/PKGBUILD
(from rev 285003, avidemux/trunk/PKGBUILD)
  avidemux/repos/extra-x86_64/PKGBUILD
(from rev 285003, avidemux/trunk/PKGBUILD)
Deleted:
  avidemux/repos/extra-i686/PKGBUILD
  avidemux/repos/extra-x86_64/PKGBUILD

---+
 /PKGBUILD |  142 
 extra-i686/PKGBUILD   |   71 
 extra-x86_64/PKGBUILD |   71 
 3 files changed, 142 insertions(+), 142 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-12-31 20:41:17 UTC (rev 285003)
+++ extra-i686/PKGBUILD 2016-12-31 20:42:40 UTC (rev 285004)
@@ -1,71 +0,0 @@
-# Maintainer: Levente Polyak 
-# Maintainer: Eric Bélanger 
-
-pkgbase=avidemux
-pkgname=('avidemux-cli' 'avidemux-qt')
-pkgver=2.6.15
-pkgrel=2
-pkgdesc='Graphical tool to edit video (filter/re-encode/split)'
-url='http://fixounet.free.fr/avidemux/'
-arch=('i686' 'x86_64')
-license=('GPL2')
-makedepends=('cmake' 'libxslt' 'qt5-base' 'jack' 'libvorbis' 'libxv' 'opus' 
'desktop-file-utils'
- 'alsa-lib' 'lame' 'xvidcore' 'faad2' 'faac' 'x264' 'libx264' 
'x265' 'libsamplerate'
- 'opencore-amr' 'yasm' 'mesa' 'libvpx' 'libpulse' 'libva' 
'intltool' 'sqlite'
- 'libvdpau' 'libdca' 'fribidi' 'glu' 'qt5-tools' 'pkg-config')
-options=('!emptydirs')
-source=(https://downloads.sourceforge.net/avidemux/avidemux_${pkgver}.tar.gz)
-sha512sums=('42964509cb51133abe624631d07bd223a7cee9fcfd971655ce26193598a48428a2eb1ba0c43034477b60a626fd332431281217644baa82f935f4aeb945d4508a')
-
-prepare() {
-  cd ${pkgbase}_${pkgver}
-  sed -i 's|../avidemux/qt4|../avidemux/qt4 
-DLRELEASE_EXECUTABLE=/usr/bin/lrelease-qt5|' bootStrap.bash
-  cp avidemux2.desktop avidemux-qt.desktop
-  sed -ri 's|(Name=).*|\1avidemux (Qt)|' avidemux-qt.desktop
-  sed -ri 's|(Exec=).*|\1avidemux3_qt5|' avidemux-qt.desktop
-}
-
-build() {
-  cd ${pkgbase}_${pkgver}
-  bash bootStrap.bash --with-core --with-cli --with-plugins
-}
-
-package_avidemux-cli() {
-  depends=('libxml2' 'fontconfig' 'libvpx' 'libva' 'sqlite')
-  optdepends=('lame: for the corresponding audio encoder plugin'
-  'faac: for the corresponding audio encoder plugin'
-  'faad2: for the corresponding audio decoder plugin'
-  'opus: for the corresponding audio decoder plugin'
-  'opencore-amr: for the corresponding audio decoder plugin'
-  'jack: for the corresponding audio device plugin'
-  'libpulse: for the corresponding audio device plugin'
-  'x264: for the corresponding video encoder plugin'
-  'libx264: for the corresponding video encoder plugin'
-  'x265: for the corresponding video encoder plugin'
-  'xvidcore: for the corresponding video encoder plugin'
-  'qt5-base: for the QtScript scripting support'
-  'libdca: for the corresponding audio decoder plugin'
-  'fribidi: for the corresponding video filter plugin')
-
-  cd ${pkgbase}_${pkgver}
-  make -C buildCli DESTDIR="${pkgdir}" install
-  make -C buildCore DESTDIR="${pkgdir}" install
-  make -C buildPluginsCLI DESTDIR="${pkgdir}" install
-  make -C buildPluginsCommon DESTDIR="${pkgdir}" install
-
-  install -Dm 644 avidemux_icon.png "${pkgdir}/usr/share/pixmaps/avidemux.png"
-  install -Dm 644 man/avidemux.1 -t "${pkgdir}/usr/share/man/man1"
-}
-
-package_avidemux-qt() {
-  pkgdesc='Graphical tool to edit video (filter/re-encode/split) - Qt GUI'
-  depends=("avidemux-cli=${pkgver}" 'qt5-base' 'x264' 'x265' 'libx264' 'glu' 
'libxv' 'desktop-file-utils')
-  replaces=('avidemux-gtk')
-
-  cd ${pkgbase}_${pkgver}
-  make -C buildQt5 DESTDIR="${pkgdir}" install
-  make -C buildPluginsQt5 DESTDIR="${pkgdir}" install
-  install -Dm 644 avidemux-qt.desktop -t "${pkgdir}/usr/share/applications"
-}
-
-# vim: ts=2 sw=2 et:

Copied: avidemux/repos/extra-i686/PKGBUILD (from rev 285003, 
avidemux/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-12-31 20:42:40 UTC (rev 285004)
@@ -0,0 +1,71 @@
+# Maintainer: Levente Polyak 
+# Maintainer: Eric Bélanger 
+
+pkgbase=avidemux
+pkgname=('avidemux-cli' 'avidemux-qt')
+pkgver=2.6.16
+pkgrel=1
+pkgdesc='Graphical tool to edit video (filter/re-encode/split)'
+url='http://fixounet.free.fr/avidemux/'
+arch=('i686' 'x86_64')
+license=('GPL2')
+makedepends=('cmake' 'libxslt' 'qt5-base' 'jack' 'libvorbis' 'libxv' 'opus' 
'desktop-file-utils'
+ 'alsa-lib' 'lame' 'xvidcore' 'faad2' 'faac' 'x264' 'libx264' 
'x265' 'libsamplerate'
+ 'opencore-amr' 'yasm' 'mesa' 'libvpx' 'libpulse' 'libva' 
'int

[arch-commits] Commit in avidemux/repos (4 files)

2016-12-28 Thread Maxime Gauduin
Date: Wednesday, December 28, 2016 @ 09:30:46
  Author: alucryd
Revision: 284926

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  avidemux/repos/extra-i686/PKGBUILD
(from rev 284925, avidemux/trunk/PKGBUILD)
  avidemux/repos/extra-x86_64/PKGBUILD
(from rev 284925, avidemux/trunk/PKGBUILD)
Deleted:
  avidemux/repos/extra-i686/PKGBUILD
  avidemux/repos/extra-x86_64/PKGBUILD

---+
 /PKGBUILD |  142 
 extra-i686/PKGBUILD   |   71 
 extra-x86_64/PKGBUILD |   71 
 3 files changed, 142 insertions(+), 142 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-12-28 09:30:31 UTC (rev 284925)
+++ extra-i686/PKGBUILD 2016-12-28 09:30:46 UTC (rev 284926)
@@ -1,71 +0,0 @@
-# Maintainer: Levente Polyak 
-# Maintainer: Eric Bélanger 
-
-pkgbase=avidemux
-pkgname=('avidemux-cli' 'avidemux-qt')
-pkgver=2.6.15
-pkgrel=1
-pkgdesc='Graphical tool to edit video (filter/re-encode/split)'
-url='http://fixounet.free.fr/avidemux/'
-arch=('i686' 'x86_64')
-license=('GPL2')
-makedepends=('cmake' 'libxslt' 'qt5-base' 'jack' 'libvorbis' 'libxv' 'opus' 
'desktop-file-utils'
- 'alsa-lib' 'lame' 'xvidcore' 'faad2' 'faac' 'x264' 'libx264' 
'x265' 'libsamplerate'
- 'opencore-amr' 'yasm' 'mesa' 'libvpx' 'libpulse' 'libva' 
'intltool' 'sqlite'
- 'libvdpau' 'libdca' 'fribidi' 'glu' 'qt5-tools' 'pkg-config')
-options=('!emptydirs')
-source=(https://downloads.sourceforge.net/avidemux/avidemux_${pkgver}.tar.gz)
-sha512sums=('42964509cb51133abe624631d07bd223a7cee9fcfd971655ce26193598a48428a2eb1ba0c43034477b60a626fd332431281217644baa82f935f4aeb945d4508a')
-
-prepare() {
-  cd ${pkgbase}_${pkgver}
-  sed -i 's|../avidemux/qt4|../avidemux/qt4 
-DLRELEASE_EXECUTABLE=/usr/bin/lrelease-qt5|' bootStrap.bash
-  cp avidemux2.desktop avidemux-qt.desktop
-  sed -ri 's|(Name=).*|\1avidemux (Qt)|' avidemux-qt.desktop
-  sed -ri 's|(Exec=).*|\1avidemux3_qt5|' avidemux-qt.desktop
-}
-
-build() {
-  cd ${pkgbase}_${pkgver}
-  bash bootStrap.bash --with-core --with-cli --with-plugins
-}
-
-package_avidemux-cli() {
-  depends=('libxml2' 'fontconfig' 'libvpx' 'libva' 'sqlite')
-  optdepends=('lame: for the corresponding audio encoder plugin'
-  'faac: for the corresponding audio encoder plugin'
-  'faad2: for the corresponding audio decoder plugin'
-  'opus: for the corresponding audio decoder plugin'
-  'opencore-amr: for the corresponding audio decoder plugin'
-  'jack: for the corresponding audio device plugin'
-  'libpulse: for the corresponding audio device plugin'
-  'x264: for the corresponding video encoder plugin'
-  'libx264: for the corresponding video encoder plugin'
-  'x265: for the corresponding video encoder plugin'
-  'xvidcore: for the corresponding video encoder plugin'
-  'qt5-base: for the QtScript scripting support'
-  'libdca: for the corresponding audio decoder plugin'
-  'fribidi: for the corresponding video filter plugin')
-
-  cd ${pkgbase}_${pkgver}
-  make -C buildCli DESTDIR="${pkgdir}" install
-  make -C buildCore DESTDIR="${pkgdir}" install
-  make -C buildPluginsCLI DESTDIR="${pkgdir}" install
-  make -C buildPluginsCommon DESTDIR="${pkgdir}" install
-
-  install -Dm 644 avidemux_icon.png "${pkgdir}/usr/share/pixmaps/avidemux.png"
-  install -Dm 644 man/avidemux.1 -t "${pkgdir}/usr/share/man/man1"
-}
-
-package_avidemux-qt() {
-  pkgdesc='Graphical tool to edit video (filter/re-encode/split) - Qt GUI'
-  depends=("avidemux-cli=${pkgver}" 'qt5-base' 'x264' 'x265' 'libx264' 'glu' 
'libxv' 'desktop-file-utils')
-  replaces=('avidemux-gtk')
-
-  cd ${pkgbase}_${pkgver}
-  make -C buildQt5 DESTDIR="${pkgdir}" install
-  make -C buildPluginsQt5 DESTDIR="${pkgdir}" install
-  install -Dm 644 avidemux-qt.desktop -t "${pkgdir}/usr/share/applications"
-}
-
-# vim: ts=2 sw=2 et:

Copied: avidemux/repos/extra-i686/PKGBUILD (from rev 284925, 
avidemux/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-12-28 09:30:46 UTC (rev 284926)
@@ -0,0 +1,71 @@
+# Maintainer: Levente Polyak 
+# Maintainer: Eric Bélanger 
+
+pkgbase=avidemux
+pkgname=('avidemux-cli' 'avidemux-qt')
+pkgver=2.6.15
+pkgrel=2
+pkgdesc='Graphical tool to edit video (filter/re-encode/split)'
+url='http://fixounet.free.fr/avidemux/'
+arch=('i686' 'x86_64')
+license=('GPL2')
+makedepends=('cmake' 'libxslt' 'qt5-base' 'jack' 'libvorbis' 'libxv' 'opus' 
'desktop-file-utils'
+ 'alsa-lib' 'lame' 'xvidcore' 'faad2' 'faac' 'x264' 'libx264' 
'x265' 'libsamplerate'
+ 'opencore-amr' 'yasm' 'mesa' 'libvpx' 'libpulse' 'libva' 
'int

[arch-commits] Commit in avidemux/repos (4 files)

2016-11-19 Thread Levente Polyak
Date: Sunday, November 20, 2016 @ 01:53:19
  Author: anthraxx
Revision: 281644

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  avidemux/repos/extra-i686/PKGBUILD
(from rev 281643, avidemux/trunk/PKGBUILD)
  avidemux/repos/extra-x86_64/PKGBUILD
(from rev 281643, avidemux/trunk/PKGBUILD)
Deleted:
  avidemux/repos/extra-i686/PKGBUILD
  avidemux/repos/extra-x86_64/PKGBUILD

---+
 /PKGBUILD |  142 
 extra-i686/PKGBUILD   |   71 
 extra-x86_64/PKGBUILD |   71 
 3 files changed, 142 insertions(+), 142 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-11-20 01:53:06 UTC (rev 281643)
+++ extra-i686/PKGBUILD 2016-11-20 01:53:19 UTC (rev 281644)
@@ -1,71 +0,0 @@
-# Maintainer: Levente Polyak 
-# Maintainer: Eric Bélanger 
-
-pkgbase=avidemux
-pkgname=('avidemux-cli' 'avidemux-qt')
-pkgver=2.6.14
-pkgrel=2
-pkgdesc='Graphical tool to edit video (filter/re-encode/split)'
-url='http://fixounet.free.fr/avidemux/'
-arch=('i686' 'x86_64')
-license=('GPL2')
-makedepends=('cmake' 'libxslt' 'qt5-base' 'jack' 'libvorbis' 'libxv' 'opus' 
'desktop-file-utils'
- 'alsa-lib' 'lame' 'xvidcore' 'faad2' 'faac' 'x264' 'libx264' 
'x265' 'libsamplerate'
- 'opencore-amr' 'yasm' 'mesa' 'libvpx' 'libpulse' 'libva' 
'intltool' 'sqlite'
- 'libvdpau' 'libdca' 'fribidi' 'glu' 'qt5-tools' 'pkg-config')
-options=('!emptydirs')
-source=(https://downloads.sourceforge.net/avidemux/avidemux_${pkgver}.tar.gz)
-sha512sums=('c940850df93e77b3176850cfdd7851c1e133835802a2bc979a497d825d85ca2fd394e2dc813242b9009f1b6ec2904f63163bd9afda9478be064518e4572449a1')
-
-prepare() {
-  cd ${pkgbase}_${pkgver}
-  sed -i 's|../avidemux/qt4|../avidemux/qt4 
-DLRELEASE_EXECUTABLE=/usr/bin/lrelease-qt5|' bootStrap.bash
-  cp avidemux2.desktop avidemux-qt.desktop
-  sed -ri 's|(Name=).*|\1avidemux (Qt)|' avidemux-qt.desktop
-  sed -ri 's|(Exec=).*|\1avidemux3_qt5|' avidemux-qt.desktop
-}
-
-build() {
-  cd ${pkgbase}_${pkgver}
-  bash bootStrap.bash --with-core --with-cli --with-plugins
-}
-
-package_avidemux-cli() {
-  depends=('libxml2' 'fontconfig' 'libvpx' 'libva' 'sqlite')
-  optdepends=('lame: for the corresponding audio encoder plugin'
-  'faac: for the corresponding audio encoder plugin'
-  'faad2: for the corresponding audio decoder plugin'
-  'opus: for the corresponding audio decoder plugin'
-  'opencore-amr: for the corresponding audio decoder plugin'
-  'jack: for the corresponding audio device plugin'
-  'libpulse: for the corresponding audio device plugin'
-  'x264: for the corresponding video encoder plugin'
-  'libx264: for the corresponding video encoder plugin'
-  'x265: for the corresponding video encoder plugin'
-  'xvidcore: for the corresponding video encoder plugin'
-  'qt5-base: for the QtScript scripting support'
-  'libdca: for the corresponding audio decoder plugin'
-  'fribidi: for the corresponding video filter plugin')
-
-  cd ${pkgbase}_${pkgver}
-  make -C buildCli DESTDIR="${pkgdir}" install
-  make -C buildCore DESTDIR="${pkgdir}" install
-  make -C buildPluginsCLI DESTDIR="${pkgdir}" install
-  make -C buildPluginsCommon DESTDIR="${pkgdir}" install
-
-  install -Dm 644 avidemux_icon.png "${pkgdir}/usr/share/pixmaps/avidemux.png"
-  install -Dm 644 man/avidemux.1 -t "${pkgdir}/usr/share/man/man1"
-}
-
-package_avidemux-qt() {
-  pkgdesc='Graphical tool to edit video (filter/re-encode/split) - Qt GUI'
-  depends=("avidemux-cli=${pkgver}" 'qt5-base' 'x264' 'x265' 'libx264' 'glu' 
'libxv' 'desktop-file-utils')
-  replaces=('avidemux-gtk')
-
-  cd ${pkgbase}_${pkgver}
-  make -C buildQt5 DESTDIR="${pkgdir}" install
-  make -C buildPluginsQt5 DESTDIR="${pkgdir}" install
-  install -Dm 644 avidemux-qt.desktop -t "${pkgdir}/usr/share/applications"
-}
-
-# vim: ts=2 sw=2 et:

Copied: avidemux/repos/extra-i686/PKGBUILD (from rev 281643, 
avidemux/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-11-20 01:53:19 UTC (rev 281644)
@@ -0,0 +1,71 @@
+# Maintainer: Levente Polyak 
+# Maintainer: Eric Bélanger 
+
+pkgbase=avidemux
+pkgname=('avidemux-cli' 'avidemux-qt')
+pkgver=2.6.15
+pkgrel=1
+pkgdesc='Graphical tool to edit video (filter/re-encode/split)'
+url='http://fixounet.free.fr/avidemux/'
+arch=('i686' 'x86_64')
+license=('GPL2')
+makedepends=('cmake' 'libxslt' 'qt5-base' 'jack' 'libvorbis' 'libxv' 'opus' 
'desktop-file-utils'
+ 'alsa-lib' 'lame' 'xvidcore' 'faad2' 'faac' 'x264' 'libx264' 
'x265' 'libsamplerate'
+ 'opencore-amr' 'yasm' 'mesa' 'libvpx' 'libpulse' 'libva' 
'intlt

[arch-commits] Commit in avidemux/repos (4 files)

2016-11-03 Thread Levente Polyak
Date: Thursday, November 3, 2016 @ 12:40:47
  Author: anthraxx
Revision: 279788

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  avidemux/repos/extra-i686/PKGBUILD
(from rev 279787, avidemux/trunk/PKGBUILD)
  avidemux/repos/extra-x86_64/PKGBUILD
(from rev 279787, avidemux/trunk/PKGBUILD)
Deleted:
  avidemux/repos/extra-i686/PKGBUILD
  avidemux/repos/extra-x86_64/PKGBUILD

---+
 /PKGBUILD |  142 
 extra-i686/PKGBUILD   |   70 ---
 extra-x86_64/PKGBUILD |   70 ---
 3 files changed, 142 insertions(+), 140 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-11-03 12:24:24 UTC (rev 279787)
+++ extra-i686/PKGBUILD 2016-11-03 12:40:47 UTC (rev 279788)
@@ -1,70 +0,0 @@
-# Maintainer: Levente Polyak 
-# Maintainer: Eric Bélanger 
-
-pkgbase=avidemux
-pkgname=('avidemux-cli' 'avidemux-qt')
-pkgver=2.6.14
-pkgrel=1
-pkgdesc='Graphical tool to edit video (filter/re-encode/split)'
-url='http://fixounet.free.fr/avidemux/'
-arch=('i686' 'x86_64')
-license=('GPL2')
-makedepends=('cmake' 'libxslt' 'qt5-base' 'jack' 'libvorbis' 'libxv' 'opus' 
'desktop-file-utils'
- 'alsa-lib' 'lame' 'xvidcore' 'faad2' 'faac' 'x264' 'libx264' 
'x265' 'libsamplerate'
- 'opencore-amr' 'yasm' 'mesa' 'libvpx' 'libpulse' 'libva' 
'intltool' 'sqlite'
- 'libvdpau' 'libdca' 'fribidi' 'glu' 'qt5-tools' 'pkg-config')
-options=('!emptydirs')
-source=(https://downloads.sourceforge.net/avidemux/avidemux_${pkgver}.tar.gz)
-sha512sums=('c940850df93e77b3176850cfdd7851c1e133835802a2bc979a497d825d85ca2fd394e2dc813242b9009f1b6ec2904f63163bd9afda9478be064518e4572449a1')
-
-prepare() {
-  cd ${pkgbase}_${pkgver}
-  sed -i 's|../avidemux/qt4|../avidemux/qt4 
-DLRELEASE_EXECUTABLE=/usr/bin/lrelease-qt5|' bootStrap.bash
-}
-
-build() {
-  cd ${pkgbase}_${pkgver}
-  bash bootStrap.bash --with-core --with-cli --with-plugins
-}
-
-package_avidemux-cli() {
-  depends=('libxml2' 'fontconfig' 'libvpx' 'libva' 'sqlite')
-  optdepends=('lame: for the corresponding audio encoder plugin'
-  'faac: for the corresponding audio encoder plugin'
-  'faad2: for the corresponding audio decoder plugin'
-  'opus: for the corresponding audio decoder plugin'
-  'opencore-amr: for the corresponding audio decoder plugin'
-  'jack: for the corresponding audio device plugin'
-  'libpulse: for the corresponding audio device plugin'
-  'x264: for the corresponding video encoder plugin'
-  'libx264: for the corresponding video encoder plugin'
-  'x265: for the corresponding video encoder plugin'
-  'xvidcore: for the corresponding video encoder plugin'
-  'qt5-base: for the QtScript scripting support'
-  'libdca: for the corresponding audio decoder plugin'
-  'fribidi: for the corresponding video filter plugin')
-
-  cd ${pkgbase}_${pkgver}
-  (cd buildCli; make DESTDIR="${pkgdir}" install)
-  (cd buildCore; make DESTDIR="${pkgdir}" install)
-  (cd buildPluginsCLI; make DESTDIR="${pkgdir}" install)
-  (cd buildPluginsCommon; make DESTDIR="${pkgdir}" install)
-
-  install -Dm 644 avidemux_icon.png "${pkgdir}/usr/share/pixmaps/avidemux.png"
-  install -Dm 644 man/avidemux.1 "${pkgdir}/usr/share/man/man1/avidemux.1"
-}
-
-package_avidemux-qt() {
-  pkgdesc='Graphical tool to edit video (filter/re-encode/split) - Qt GUI'
-  depends=("avidemux-cli=${pkgver}" 'qt5-base' 'x264' 'x265' 'libx264' 'glu' 
'libxv' 'desktop-file-utils')
-  replaces=('avidemux-gtk')
-
-  cd ${pkgbase}_${pkgver}
-  (cd buildQt5; make DESTDIR="${pkgdir}" install)
-  (cd buildPluginsQt5; make DESTDIR="${pkgdir}" install)
-
-  install -Dm 644 avidemux2.desktop 
"${pkgdir}/usr/share/applications/avidemux-qt.desktop"
-  sed -i 's|gtk|qt5|' "${pkgdir}/usr/share/applications/avidemux-qt.desktop"
-}
-
-# vim: ts=2 sw=2 et:

Copied: avidemux/repos/extra-i686/PKGBUILD (from rev 279787, 
avidemux/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-11-03 12:40:47 UTC (rev 279788)
@@ -0,0 +1,71 @@
+# Maintainer: Levente Polyak 
+# Maintainer: Eric Bélanger 
+
+pkgbase=avidemux
+pkgname=('avidemux-cli' 'avidemux-qt')
+pkgver=2.6.14
+pkgrel=2
+pkgdesc='Graphical tool to edit video (filter/re-encode/split)'
+url='http://fixounet.free.fr/avidemux/'
+arch=('i686' 'x86_64')
+license=('GPL2')
+makedepends=('cmake' 'libxslt' 'qt5-base' 'jack' 'libvorbis' 'libxv' 'opus' 
'desktop-file-utils'
+ 'alsa-lib' 'lame' 'xvidcore' 'faad2' 'faac' 'x264' 'libx264' 
'x265' 'libsamplerate'
+ 'opencore-amr' 'yasm' 'mesa' 'libvpx' 'libpulse' 'libva' 
'intltool' 'sqlite'
+ 'libvdpau' 'libdca'

[arch-commits] Commit in avidemux/repos (4 files)

2012-02-05 Thread Ionut Biru
Date: Sunday, February 5, 2012 @ 16:34:30
  Author: ibiru
Revision: 149121

db-move: moved avidemux from [staging] to [testing] (x86_64)

Added:
  avidemux/repos/testing-x86_64/
  avidemux/repos/testing-x86_64/PKGBUILD
(from rev 149115, avidemux/repos/staging-x86_64/PKGBUILD)
  avidemux/repos/testing-x86_64/avidemux.install
(from rev 149115, avidemux/repos/staging-x86_64/avidemux.install)
Deleted:
  avidemux/repos/staging-x86_64/

--+
 PKGBUILD |  116 +
 avidemux.install |   11 +
 2 files changed, 127 insertions(+)

Copied: avidemux/repos/testing-x86_64/PKGBUILD (from rev 149115, 
avidemux/repos/staging-x86_64/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2012-02-05 21:34:30 UTC (rev 149121)
@@ -0,0 +1,116 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+
+pkgbase=avidemux
+pkgname=('avidemux-cli' 'avidemux-gtk' 'avidemux-qt')
+pkgver=2.5.6
+pkgrel=2
+arch=('i686' 'x86_64')
+license=('GPL')
+url="http://fixounet.free.fr/avidemux/";
+makedepends=('cmake' 'libxslt' 'gtk2' 'qt' 'jack' 'libvorbis' 'sdl' 'libxv' \
+ 'alsa-lib' 'lame' 'xvidcore' 'faad2' 'faac' 'x264' 
'libsamplerate' \
+ 'opencore-amr' 'yasm' 'mesa' 'libvpx' 'libpulse' 'libva')
+options=('!makeflags')
+source=(http://downloads.sourceforge.net/avidemux/avidemux_${pkgver}.tar.gz)
+sha1sums=('47205c236bf6a4435b9d4dd944493c7b7e2752f5')
+
+build() {
+  cd "${srcdir}/${pkgbase}_${pkgver}"
+  mkdir build
+  cd build
+  cmake -D CMAKE_INSTALL_PREFIX=/usr -D CMAKE_BUILD_TYPE=Release -D 
CMAKE_SKIP_RPATH=ON -D GTK=1 -D QT4=1 ..
+  make
+
+# plugin build expects libraries to be already installed; we fake a prefix
+# in build/ by symlinking all libraries to build/lib/
+  mkdir -p lib
+  cd lib
+  find ../avidemux -name '*.so*' | xargs ln -sft .
+  cd ../../plugins
+  mkdir build
+  cd build
+  cmake -D CMAKE_INSTALL_PREFIX=/usr -D 
AVIDEMUX_SOURCE_DIR="${srcdir}/avidemux_${pkgver}" \
+-D AVIDEMUX_CORECONFIG_DIR="${srcdir}/avidemux_${pkgver}/build/config" \
+-D AVIDEMUX_INSTALL_PREFIX="${srcdir}/avidemux_${pkgver}/build" \
+-D CMAKE_BUILD_TYPE=Release -D CMAKE_SKIP_RPATH=ON ..
+  make
+}
+
+package_avidemux-cli() {
+  pkgdesc="A graphical tool to edit video (filter/re-encode/split)"
+  depends=('libxml2' 'sdl' 'fontconfig' 'libvpx' 'libva')
+  optdepends=('lame: for the corresponding audio encoder plugin'
+  'faac: for the corresponding audio encoder plugin'
+  'faad2: for the corresponding audio decoder plugin'
+  'opencore-amr: for the corresponding audio decoder plugin'
+  'jack: for the corresponding audio device plugin'
+  'libpulse: for the corresponding audio device plugin'
+  'sdl: for the corresponding audio device plugin'
+  'x264: for the corresponding video encoder plugin'
+  'xvidcore: for the corresponding video encoder plugin')
+  provides=('avidemux')
+  conflicts=('avidemux')
+  replaces=('avidemux')
+
+  cd "${srcdir}/${pkgbase}_${pkgver}/build"
+  make DESTDIR="${pkgdir}" install
+
+  cd "${srcdir}/${pkgbase}_${pkgver}/plugins/build"
+  make DESTDIR="${pkgdir}" install
+  rm -r "${pkgdir}"/usr/share/avidemux
+  rm "${pkgdir}"/usr/bin/avidemux2_{gtk,qt4}
+  rm "${pkgdir}"/usr/lib/*{_gtk,_qt4,Gtk,QT4}.so
+  rm "${pkgdir}"/usr/lib/ADM_plugins/videoEncoder/x264/*{Gtk,Qt}.so
+  rm "${pkgdir}"/usr/lib/ADM_plugins/videoEncoder/xvid/*{Gtk,Qt}.so
+  rm "${pkgdir}"/usr/lib/ADM_plugins/videoFilter/*{_gtk,_qt4}.so
+
+  ln -s /usr/lib/ADM_plugins/videoEncoder/libADM_vidEnc_xvid.so 
"${pkgdir}/usr/lib/libADM_vidEnc_xvid.so"
+  ln -s /usr/lib/ADM_plugins/videoEncoder/libADM_vidEnc_x264.so 
"${pkgdir}/usr/lib/libADM_vidEnc_x264.so"
+
+  install -D -m644 ../../avidemux_icon.png 
"${pkgdir}/usr/share/pixmaps/avidemux.png"
+  install -D -m644 ../../man/avidemux.1 
"${pkgdir}/usr/share/man/man1/avidemux.1"
+}
+
+package_avidemux-gtk() {
+  pkgdesc="A graphical tool to edit video (filter/re-encode/split) - GTK GUI"
+  depends=("avidemux-cli=${pkgver}" 'gtk2' 'libxv' 'desktop-file-utils')
+  install=avidemux.install
+
+  cd "${srcdir}/${pkgbase}_${pkgver}"
+  install -D -m755 build/avidemux/avidemux2_gtk 
"${pkgdir}/usr/bin/avidemux2_gtk"
+
+  install -d "${pkgdir}"/usr/lib/ADM_plugins/videoEncoder/{x264,xvid}
+  install -d "${pkgdir}"/usr/lib/ADM_plugins/videoFilter
+
+  install -D -m755 build/lib/*{_gtk,Gtk}.so "${pkgdir}/usr/lib"
+  install -D -m755 plugins/build/ADM_videoEncoder/ADM_vidEnc_x264/gtk/*Gtk.so 
"${pkgdir}/usr/lib/ADM_plugins/videoEncoder/x264"
+  install -D -m755 plugins/build/ADM_videoEncoder/ADM_vidEnc_xvid/gtk/*Gtk.so 
"${pkgdir}/usr/lib/ADM_plugins/videoEncoder/xvid"
+  install -D -m755 plugins/build/ADM_videoFilters/*/*_gtk.so 
"${pkgdir}/usr/lib/ADM_plugins/videoFilter"
+
+  install -D -m644 avidemux

[arch-commits] Commit in avidemux/repos (4 files)

2012-02-05 Thread Ionut Biru
Date: Sunday, February 5, 2012 @ 16:34:29
  Author: ibiru
Revision: 149120

db-move: moved avidemux from [staging] to [testing] (i686)

Added:
  avidemux/repos/testing-i686/
  avidemux/repos/testing-i686/PKGBUILD
(from rev 149115, avidemux/repos/staging-i686/PKGBUILD)
  avidemux/repos/testing-i686/avidemux.install
(from rev 149115, avidemux/repos/staging-i686/avidemux.install)
Deleted:
  avidemux/repos/staging-i686/

--+
 PKGBUILD |  116 +
 avidemux.install |   11 +
 2 files changed, 127 insertions(+)

Copied: avidemux/repos/testing-i686/PKGBUILD (from rev 149115, 
avidemux/repos/staging-i686/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2012-02-05 21:34:29 UTC (rev 149120)
@@ -0,0 +1,116 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+
+pkgbase=avidemux
+pkgname=('avidemux-cli' 'avidemux-gtk' 'avidemux-qt')
+pkgver=2.5.6
+pkgrel=2
+arch=('i686' 'x86_64')
+license=('GPL')
+url="http://fixounet.free.fr/avidemux/";
+makedepends=('cmake' 'libxslt' 'gtk2' 'qt' 'jack' 'libvorbis' 'sdl' 'libxv' \
+ 'alsa-lib' 'lame' 'xvidcore' 'faad2' 'faac' 'x264' 
'libsamplerate' \
+ 'opencore-amr' 'yasm' 'mesa' 'libvpx' 'libpulse' 'libva')
+options=('!makeflags')
+source=(http://downloads.sourceforge.net/avidemux/avidemux_${pkgver}.tar.gz)
+sha1sums=('47205c236bf6a4435b9d4dd944493c7b7e2752f5')
+
+build() {
+  cd "${srcdir}/${pkgbase}_${pkgver}"
+  mkdir build
+  cd build
+  cmake -D CMAKE_INSTALL_PREFIX=/usr -D CMAKE_BUILD_TYPE=Release -D 
CMAKE_SKIP_RPATH=ON -D GTK=1 -D QT4=1 ..
+  make
+
+# plugin build expects libraries to be already installed; we fake a prefix
+# in build/ by symlinking all libraries to build/lib/
+  mkdir -p lib
+  cd lib
+  find ../avidemux -name '*.so*' | xargs ln -sft .
+  cd ../../plugins
+  mkdir build
+  cd build
+  cmake -D CMAKE_INSTALL_PREFIX=/usr -D 
AVIDEMUX_SOURCE_DIR="${srcdir}/avidemux_${pkgver}" \
+-D AVIDEMUX_CORECONFIG_DIR="${srcdir}/avidemux_${pkgver}/build/config" \
+-D AVIDEMUX_INSTALL_PREFIX="${srcdir}/avidemux_${pkgver}/build" \
+-D CMAKE_BUILD_TYPE=Release -D CMAKE_SKIP_RPATH=ON ..
+  make
+}
+
+package_avidemux-cli() {
+  pkgdesc="A graphical tool to edit video (filter/re-encode/split)"
+  depends=('libxml2' 'sdl' 'fontconfig' 'libvpx' 'libva')
+  optdepends=('lame: for the corresponding audio encoder plugin'
+  'faac: for the corresponding audio encoder plugin'
+  'faad2: for the corresponding audio decoder plugin'
+  'opencore-amr: for the corresponding audio decoder plugin'
+  'jack: for the corresponding audio device plugin'
+  'libpulse: for the corresponding audio device plugin'
+  'sdl: for the corresponding audio device plugin'
+  'x264: for the corresponding video encoder plugin'
+  'xvidcore: for the corresponding video encoder plugin')
+  provides=('avidemux')
+  conflicts=('avidemux')
+  replaces=('avidemux')
+
+  cd "${srcdir}/${pkgbase}_${pkgver}/build"
+  make DESTDIR="${pkgdir}" install
+
+  cd "${srcdir}/${pkgbase}_${pkgver}/plugins/build"
+  make DESTDIR="${pkgdir}" install
+  rm -r "${pkgdir}"/usr/share/avidemux
+  rm "${pkgdir}"/usr/bin/avidemux2_{gtk,qt4}
+  rm "${pkgdir}"/usr/lib/*{_gtk,_qt4,Gtk,QT4}.so
+  rm "${pkgdir}"/usr/lib/ADM_plugins/videoEncoder/x264/*{Gtk,Qt}.so
+  rm "${pkgdir}"/usr/lib/ADM_plugins/videoEncoder/xvid/*{Gtk,Qt}.so
+  rm "${pkgdir}"/usr/lib/ADM_plugins/videoFilter/*{_gtk,_qt4}.so
+
+  ln -s /usr/lib/ADM_plugins/videoEncoder/libADM_vidEnc_xvid.so 
"${pkgdir}/usr/lib/libADM_vidEnc_xvid.so"
+  ln -s /usr/lib/ADM_plugins/videoEncoder/libADM_vidEnc_x264.so 
"${pkgdir}/usr/lib/libADM_vidEnc_x264.so"
+
+  install -D -m644 ../../avidemux_icon.png 
"${pkgdir}/usr/share/pixmaps/avidemux.png"
+  install -D -m644 ../../man/avidemux.1 
"${pkgdir}/usr/share/man/man1/avidemux.1"
+}
+
+package_avidemux-gtk() {
+  pkgdesc="A graphical tool to edit video (filter/re-encode/split) - GTK GUI"
+  depends=("avidemux-cli=${pkgver}" 'gtk2' 'libxv' 'desktop-file-utils')
+  install=avidemux.install
+
+  cd "${srcdir}/${pkgbase}_${pkgver}"
+  install -D -m755 build/avidemux/avidemux2_gtk 
"${pkgdir}/usr/bin/avidemux2_gtk"
+
+  install -d "${pkgdir}"/usr/lib/ADM_plugins/videoEncoder/{x264,xvid}
+  install -d "${pkgdir}"/usr/lib/ADM_plugins/videoFilter
+
+  install -D -m755 build/lib/*{_gtk,Gtk}.so "${pkgdir}/usr/lib"
+  install -D -m755 plugins/build/ADM_videoEncoder/ADM_vidEnc_x264/gtk/*Gtk.so 
"${pkgdir}/usr/lib/ADM_plugins/videoEncoder/x264"
+  install -D -m755 plugins/build/ADM_videoEncoder/ADM_vidEnc_xvid/gtk/*Gtk.so 
"${pkgdir}/usr/lib/ADM_plugins/videoEncoder/xvid"
+  install -D -m755 plugins/build/ADM_videoFilters/*/*_gtk.so 
"${pkgdir}/usr/lib/ADM_plugins/videoFilter"
+
+  install -D -m644 avidemux2-gtk.desktop 
"${