contrib/x265/Pkgfile

25 lines
645 B
Plaintext
Raw Normal View History

2014-10-22 11:58:48 +02:00
# Description: Open Source H265/HEVC video encoder.
# URL: https://bitbucket.org/multicoreware/x265/wiki/Home
2014-11-10 13:28:07 +01:00
# Maintainer: Danny Rawlins, crux at romster dot me
# Packager: Danny Rawlins, crux at romster dot me
2014-10-22 11:58:48 +02:00
# Depends on: yasm cmake
name=x265
2016-02-16 11:20:55 +01:00
version=1.9
2014-10-22 11:58:48 +02:00
release=1
source=(https://bitbucket.org/multicoreware/x265/get/$version.tar.bz2)
build() {
cd multicoreware-$name-*/build/linux
# setting CC and CXX breaks compilation
if [ -n "$(pkginfo -i | grep '^ccache ')" ]; then
unset CC CXX
export PATH="/usr/lib/ccache/:$PATH"
fi
cmake -G "Unix Makefiles" -DCMAKE_INSTALL_PREFIX=/usr ../../source
make
make DESTDIR=$PKG install
}