Skip to content

Commit

Permalink
Merge pull request #1606 from mariux64/add-mpv
Browse files Browse the repository at this point in the history
mpv: add mpv
  • Loading branch information
wwwutz authored Jan 20, 2020
2 parents 9946629 + 6e998d5 commit f462c09
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions mpv.be0
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
#!/usr/bin/env beesh

# BEE_VERSION mpv-0.31.0-0

# more info: https://mpv.io

SRCURL[0]="https://github.com/mpv-player/${PKGNAME}/archive/v${PKGVERSION}.tar.gz"
# PATCHURL+=()

# build_in_sourcedir

# sourcesubdir_append src

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

#mee_extract_post() {
#}

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


mee_configure() {
git clone https://github.com/mpv-player/mpv-build.git
}

mee_build() {
cd mpv-build
./rebuild
}

mee_install() {
mkdir -vp ${D}/usr/bin
cp ${B}/mpv-build/mpv/build/mpv ${D}/usr/bin
}

#mee_install_post() {
# exit
#}

0 comments on commit f462c09

Please sign in to comment.