35 lines
982 B
Bash
35 lines
982 B
Bash
# Template file for 'vapoursynth'
|
|
pkgname=vapoursynth
|
|
version=R35
|
|
revision=2
|
|
build_style=gnu-configure
|
|
hostmakedepends="automake pkg-config libtool yasm 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=762cada84d2f975ec925a1eb719dd8a2f40dfaa69d10c358b228184785f64918
|
|
|
|
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="${sourcepkg}>=${version}_${revision}"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/pkgconfig
|
|
vmove "usr/lib/*.a"
|
|
}
|
|
}
|