mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 10:32:13 +08:00
61 lines
2.5 KiB
Bash
61 lines
2.5 KiB
Bash
pkgbase=avidemux
|
|
pkgname=('avidemux-cli' 'avidemux')
|
|
pkgver=2.6.11
|
|
pkgrel=1
|
|
pkgdesc='Simple video editor for cutting, filtering and encoding tasks.'
|
|
arch=('x86_64')
|
|
license=('GPL')
|
|
url="http://fixounet.free.fr/avidemux/"
|
|
screenshot="http://upload.wikimedia.org/wikipedia/commons/7/77/Avidemux_Screenshot_Qt.png"
|
|
makedepends=('cmake' 'libxslt' 'qt5-base' 'qt5-tools' 'qt5-script' 'qt5-multimedia' 'qt' 'jack' 'libvorbis' 'sdl' 'libxv' 'alsa-lib' 'lame'
|
|
'faad2' 'faac' 'x264' 'x265' 'libsamplerate' 'opencore-amr' 'yasm' 'mesa' 'libvpx' 'sqlite3' 'xvidcore'
|
|
'pulseaudio' 'libva' 'desktop-file-utils' 'libdca' 'fribidi' 'glu' 'aften' 'dcaenc' 'twolame' 'gettext')
|
|
categories=('multimedia')
|
|
options=("!makeflags")
|
|
source=("http://downloads.sourceforge.net/avidemux/avidemux_${pkgver}.tar.gz")
|
|
sha256sums=('936ff5e10ad0551460c1233c217e4cee642623f2899a8fe48cd7f0144cfd1b3a')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgbase}_${pkgver}"
|
|
# build
|
|
bash ./bootStrap.bash --with-core \
|
|
--with-cli \
|
|
--enable-qt5 \
|
|
--without-gtk \
|
|
--with-plugins
|
|
|
|
# Create qm files
|
|
# cd po
|
|
# lrelease-qt5 *.po
|
|
}
|
|
|
|
package_avidemux-cli() {
|
|
pkgdesc="A graphical tool to edit video (filter/re-encode/split)- command line version"
|
|
depends=('faac' 'faad2' 'fontconfig' 'fribidi' 'jack' 'lame' 'libdca'
|
|
'pulseaudio' 'libva' 'libxv' 'libvpx' 'libxml2' 'opencore-amr' 'xvidcore'
|
|
'sdl' 'sqlite3' 'x264' 'x265' 'aften' 'dcaenc' 'twolame')
|
|
optdepends=('avidemux: graphical interface')
|
|
|
|
cd "${srcdir}/${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 -D -m644 "${srcdir}/${pkgbase}_${pkgver}/avidemux_icon.png" "${pkgdir}/usr/share/pixmaps/avidemux.png"
|
|
install -D -m644 "${srcdir}/${pkgbase}_${pkgver}/man/avidemux.1" "${pkgdir}/usr/share/man/man1/avidemux.1"
|
|
}
|
|
|
|
package_avidemux() {
|
|
pkgdesc="A graphical tool to edit video (filter/re-encode/split)"
|
|
depends=('avidemux-cli' 'qt5-base' 'mesa')
|
|
|
|
cd "${srcdir}/${pkgbase}_${pkgver}"
|
|
|
|
(cd buildQt5; make DESTDIR="${pkgdir}" install)
|
|
(cd buildPluginsQt5; make DESTDIR="${pkgdir}" install)
|
|
|
|
install -D -m644 avidemux2.desktop "${pkgdir}/usr/share/applications/avidemux-qt.desktop"
|
|
sed -i 's|2_gtk|3_qt5|' "${pkgdir}/usr/share/applications/avidemux-qt.desktop"
|
|
}
|