9dfad181d7
[ci skip]
32 lines
813 B
Bash
32 lines
813 B
Bash
# Template file for 'x265'
|
|
pkgname=x265
|
|
version=3.0
|
|
revision=1
|
|
wrksrc="x265_${version}"
|
|
build_wrksrc=source
|
|
build_style=cmake
|
|
configure_args="-DENABLE_PIC=1"
|
|
hostmakedepends="yasm"
|
|
short_desc="Open Source H.265/HEVC video encoder"
|
|
maintainer="Juan RP <xtraeme@voidlinux.org>"
|
|
license="GPL-2.0-or-later"
|
|
homepage="http://x265.org/"
|
|
distfiles="https://bitbucket.org/multicoreware/x265/downloads/x265_${version}.tar.gz"
|
|
checksum=c5b9fc260cabbc4a81561a448f4ce9cad7218272b4011feabc3a6b751b2f0662
|
|
|
|
pre_configure() {
|
|
if [ "$CROSS_BUILD" ]; then
|
|
sed -i CMakeLists.txt -e "s; -mcpu=native;;"
|
|
fi
|
|
}
|
|
|
|
x265-devel_package() {
|
|
depends="${sourcepkg}>=${version}_${revision}"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/pkgconfig
|
|
vmove "usr/lib/*.so"
|
|
vmove "usr/lib/*.a"
|
|
}
|
|
}
|