void-packages/srcpkgs/x265/template
2017-06-29 02:07:32 +02:00

30 lines
778 B
Bash

# Template file for 'x265'
pkgname=x265
version=2.4
revision=2
build_style=cmake
build_wrksrc="source"
wrksrc="x265_${version}"
configure_args="-DENABLE_PIC=1"
hostmakedepends="yasm"
short_desc="Open Source H.265/HEVC video encoder"
maintainer="Juan RP <xtraeme@voidlinux.eu>"
homepage="http://x265.org/"
license="GPL-2"
distfiles="https://bitbucket.org/multicoreware/x265/downloads/x265_${version}.tar.gz"
checksum=9c2aa718d78f6fecdd783f08ab83b98d3169e5f670404da4c16439306907d729
if [ -n "$CROSS_BUILD" ]; then
configure_args+=" -DCMAKE_SYSTEM_PROCESSOR=${CROSS_BUILD%-musl}"
fi
x265-devel_package() {
depends="${sourcepkg}>=${version}_${revision}"
short_desc+=" - development files"
pkg_install() {
vmove usr/include
vmove usr/lib/pkgconfig
vmove usr/lib/*.a
}
}