41 lines
1.1 KiB
Bash
41 lines
1.1 KiB
Bash
# Template file for 'vapoursynth'
|
|
pkgname=vapoursynth
|
|
version=R44
|
|
revision=3
|
|
build_style=gnu-configure
|
|
hostmakedepends="automake pkg-config libtool nasm python3-Cython"
|
|
makedepends="python3-devel zimg-devel libmagick-devel libass-devel"
|
|
short_desc="Application for video manipulation"
|
|
maintainer="lemmi <lemmi@nerd2nerd.org>"
|
|
license="LGPL-2"
|
|
homepage="http://www.vapoursynth.com"
|
|
distfiles="https://github.com/vapoursynth/vapoursynth/archive/$version.tar.gz"
|
|
checksum=3459aa903c42b2f87a634ee705fcc3dd251729bd179e8ab4684a50bd7415930a
|
|
|
|
case $XBPS_TARGET_MACHINE in
|
|
aarch64*)
|
|
broken="no upstream support"
|
|
;;
|
|
esac
|
|
|
|
pre_configure() {
|
|
./autogen.sh
|
|
case $XBPS_TARGET_MACHINE in
|
|
arm*musl)
|
|
sed -i '/#include <sys\/auxv.h>/a #include <asm/hwcap.h>' src/core/cpufeatures.c
|
|
sed -i -e 's/HWCAP_ARM_/HWCAP_/' src/core/cpufeatures.c
|
|
;;
|
|
*)
|
|
;;
|
|
esac
|
|
}
|
|
|
|
vapoursynth-devel_package() {
|
|
depends="python3-devel zimg-devel ${sourcepkg}>=${version}_${revision}"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/pkgconfig
|
|
vmove "usr/lib/*.a"
|
|
}
|
|
}
|