Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
executable file 42 lines (29 sloc) 860 Bytes
#!/usr/bin/env beesh
# BEE_VERSION mpv-0.34.0-0
# more info: https://mpv.io
# SRCURL[0]="https://github.com/mpv-player/${PKGNAME}/archive/v${PKGVERSION}.tar.gz mpv-${PKGVERSION}.tar.gz"
SRCURL[0]="https://beehive.molgen.mpg.de/14cd51160f41aee105d2b9d572bd8974/mpv-0.34.0.tar.gz"
# PATCHURL+=()
build_in_sourcedir
# sourcesubdir_append src
mee_extract_post() {
# WAFURL="https://waf.io/waf-2.0.20";
WAFURL="https://beehive.molgen.mpg.de/eb0cd320fc8838971cfa735ad78f6de8/waf"
wget ${WAFURL} -O ${B}/waf
chmod 755 ${B}/waf
}
#mee_patch() {
# bee_patch "${@}"
#}
mee_configure() {
python3 ${B}/waf configure
}
mee_build() {
python3 ${B}/waf build
}
mee_install() {
mkdir -vp ${D}/usr/bin
cp ${S}/build/mpv ${D}/usr/bin
mkdir -vp ${D}/usr/share/man/man1
cp ${S}/build/DOCS/man/mpv.1 ${D}/usr/share/man/man1
}