New package: vapoursynth-R32
This commit is contained in:
parent
08cb48c5a2
commit
5be8f45d5b
|
@ -2434,3 +2434,8 @@ libobs.so.0 obs-0.14.1_2
|
|||
libobsglad.so.0 obs-0.14.1_2
|
||||
libobs-opengl.so.0 obs-0.14.1_2
|
||||
libzimg.so.2 zimg-2.0.4_1
|
||||
libvapoursynth.so vapoursynth-R31_1
|
||||
libvapoursynth-script.so.0 vapoursynth-R31_1
|
||||
libvapoursynth.so vapoursynth-devel-R32_1
|
||||
libvapoursynth-script.so.0 vapoursynth-R32_1
|
||||
libmvtools.so vapoursynth-mvtools-12_1
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
vapoursynth
|
|
@ -0,0 +1,36 @@
|
|||
# Template file for 'vapoursynth'
|
||||
pkgname=vapoursynth
|
||||
version=R32
|
||||
revision=1
|
||||
build_style=gnu-configure
|
||||
hostmakedepends="automake pkg-config libtool yasm python3 python-Cython python3.4-Cython"
|
||||
makedepends="python3.4-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=e9560f64ba298c2ef9e6e3d88f63ea0ab88e14bbd0e9feee9c621b9224e408c8
|
||||
|
||||
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"
|
||||
vmove "usr/lib/*.so"
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue