Skip to content
Permalink
update-libxslt…
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
@wwwutz
Latest commit 68c22bd Oct 13, 2020 History
- update
- SRCURL
1 contributor

Users who have contributed to this file

executable file 40 lines (27 sloc) 667 Bytes
#!/usr/bin/env beesh
# BEE_VERSION mpv-0.32.0-0
# more info: https://mpv.io
# SRCURL[0]="https://github.com/mpv-player/${PKGNAME}/archive/v${PKGVERSION}.tar.gz"
SRCURL[0]="https://beehive.molgen.mpg.de/1f7d23afe7a8639dedc9f7beef4e90d7/v0.32.0.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 ${BEE_MAKEFLAGS}
}
mee_install() {
mkdir -vp ${D}/usr/bin
cp ${B}/mpv-build/mpv/build/mpv ${D}/usr/bin
}