46 lines
1.7 KiB
Bash
46 lines
1.7 KiB
Bash
# Template file for 'avidemux'
|
|
pkgname=avidemux
|
|
version=2.7.8
|
|
revision=1
|
|
# Can't be compiled for aarch64, arm* or mips*
|
|
archs="x86_64* i686*"
|
|
wrksrc="${pkgname}_${version}"
|
|
hostmakedepends="cmake pkg-config qt5-host-tools qt5-devel tar yasm"
|
|
makedepends="alsa-lib-devel faac-devel faad2-devel gettext-devel jack-devel glu-devel
|
|
lame-devel libass-devel libdca-devel libvorbis-devel libXv-devel
|
|
vapoursynth-devel libmp4v2-devel sqlite-devel libva-devel libvdpau-devel
|
|
qt5-multimedia-devel qt5-script-devel qt5-tools-devel ffmpeg-devel
|
|
liba52-devel libmad-devel x264-devel x265-devel xvidcore-devel"
|
|
short_desc="Video editing and processing application"
|
|
maintainer="Orphaned <orphan@voidlinux.org>"
|
|
license="GPL-2.0-or-later"
|
|
homepage="http://avidemux.sourceforge.net/"
|
|
changelog="http://avidemux.sourceforge.net/news.html"
|
|
distfiles="${SOURCEFORGE_SITE}/avidemux/avidemux/${version}/${pkgname}_${version}.tar.gz"
|
|
checksum=628a404f521ff2812760700ae3e2aa78e5816b0ff3fb6fd05ac3e75248d97401
|
|
|
|
# On i686 the build fails with "error: 'asm' operand has impossible constraints"
|
|
# due to not enough available CPU registers. Using the -fno-PIC flag frees up
|
|
# one additional register for the compiler/assembler to use.
|
|
case "${XBPS_TARGET_MACHINE}" in
|
|
i686*) CFLAGS="-fno-PIC";;
|
|
esac
|
|
|
|
do_configure() {
|
|
MAKEFLAGS=${makejobs} \
|
|
bash bootStrap.bash \
|
|
--with-system-libass \
|
|
--with-system-liba52 \
|
|
--with-system-libmad \
|
|
--with-system-libmp4v2 \
|
|
${cross_compile}
|
|
}
|
|
|
|
do_install() {
|
|
mv install/usr/lib{${XBPS_TARGET_WORDSIZE},}
|
|
cp -aR install/usr ${DESTDIR}
|
|
ln -s avidemux3_qt5 ${DESTDIR}/usr/bin/avidemux
|
|
vman man/avidemux.1
|
|
vinstall avidemux_icon.png 644 usr/share/pixmaps avidemux.png
|
|
vinstall appImage/avidemux.desktop 644 usr/share/applications
|
|
}
|