Skip to content

Commit

Permalink
add HandBrake-1.1.0
Browse files Browse the repository at this point in the history
HandBrake is a tool for converting video from nearly any format
to a selection of modern, widely supported codecs
  • Loading branch information
wwwutz committed May 11, 2018
1 parent 1fd8fb9 commit e505178
Show file tree
Hide file tree
Showing 2 changed files with 72 additions and 0 deletions.
38 changes: 38 additions & 0 deletions HandBrake.be0
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
#!/usr/bin/env beesh

# BEE_VERSION HandBrake-1.1.0-0
# https://handbrake.fr/

SRCURL[0]="https://download.handbrake.fr/releases/${PKGVERSION}/HandBrake-${PKGVERSION}-source.tar.bz2"

# PATCHURL+=()

# EXCLUDE+=()

build_in_sourcedir

# sourcesubdir_append src

mee_extract() {
bee_extract "${@}"
bee install jansson
}

#mee_patch() {
# bee_patch "${@}"
#}

mee_configure() {
./configure --launch-jobs=$(nproc) --launch
}

#mee_build() {
# bee_build
#}

mee_install() {
mkdir -p ${D}${BINDIR}
install -v -m 755 build/HandBrakeCLI ${D}${BINDIR}/
install -v -m 755 build/gtk/src/ghb ${D}${BINDIR}/
}
## by default this may be 'make install DESTDIR="${D}"'
34 changes: 34 additions & 0 deletions jansson.be0
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
#!/usr/bin/env beesh

# BEE_VERSION jansson-2.11-0

SRCURL[0]="http://www.digip.org/jansson/releases/jansson-${PKGVERSION}.tar.gz"

# PATCHURL+=()

# EXCLUDE+=()

# build_in_sourcedir

# sourcesubdir_append src

# mee_extract() {
# bee_extract "${@}"
# }

# mee_patch() {
# bee_patch "${@}"
#}

# mee_configure() {
# bee_configure "${@}"
#}

# mee_build() {
# bee_build
#}

# mee_install() {
# bee_install
#}
## by default this may be 'make install DESTDIR="${D}"'

0 comments on commit e505178

Please sign in to comment.