From 8745f08c77ea73f10ab3a7fb31a49c50714922bd Mon Sep 17 00:00:00 2001 From: david Date: Thu, 20 Oct 2016 17:19:59 +0200 Subject: [PATCH] x265: add new libary a library for encoding video streams into the H.265/HEVC format --- x265.be0 | 53 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100755 x265.be0 diff --git a/x265.be0 b/x265.be0 new file mode 100755 index 000000000..2c6cc9e2c --- /dev/null +++ b/x265.be0 @@ -0,0 +1,53 @@ +#!/usr/bin/env beesh + +# BEE_VERSION x265-2.1-0 + +SRCURL="https://bitbucket.org/multicoreware/x265/downloads/x265_${PKGVERSION}.tar.gz" + +PATCHURL="http://www.linuxfromscratch.org/patches/blfs/svn/x265_2.1-enable_static-1.patch" + +# EXCLUDE+=() + +# build_in_sourcedir + +sourcesubdir_append source + +#mee_extract() { +# bee_extract "${@}" +#} + +mee_patch() { + bee_patch "${@}" +} + +mee_configure() { + bee_configure -G "Unix Makefiles" \ + -DENABLE_STATIC=OFF +} + +mee_build() { + bee_build +} + +mee_install() { + bee_install +} +## by default this may be 'make install DESTDIR="${D}"' + +############################################################################### +## +## Additional hints: +## +## The name of this bee-file should follow the following naming convention: +## pkgname-pkgversion-pkgrevision.bee +## +## You may remove all comments as long as SRCURL[${PKGVERSION}] is set. +## +## Everything in this file will be executed in a bash environment. +## +## Build the package by executing +## './pkg-version-N.bee' or +## 'beesh ./pkg-version-N.bee' +## +## see http://beezinga.org/ +##