Skip to content

Commit

Permalink
x265: add new libary
Browse files Browse the repository at this point in the history
a library for encoding video streams into the H.265/HEVC format
  • Loading branch information
david committed Nov 18, 2016
1 parent d6fad24 commit 8745f08
Showing 1 changed file with 53 additions and 0 deletions.
53 changes: 53 additions & 0 deletions x265.be0
Original file line number Diff line number Diff line change
@@ -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/
##

0 comments on commit 8745f08

Please sign in to comment.