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 41 lines (28 sloc) 697 Bytes
#!/usr/bin/env beesh
# BEE_VERSION glow-1.5.0-0
# more info: https://github.com/charmbracelet/glow
# https://github.com/charmbracelet/glow/releases/download/v1.5.0/glow-1.5.0.tar.gz
SRCURL[0]="https://beehive.molgen.mpg.de/15956a1c8d04d27d3b0a581feaad6dfd/glow-1.5.0.tar.gz"
# PATCHURL+=()
BEE_EXTRACT_STRIP=0
# build_in_sourcedir
# sourcesubdir_append src
#mee_extract() {
# bee_extract "${@}"
#}
#mee_patch() {
# bee_patch "${@}"
#}
#mee_configure() {
# bee_configure
#}
mee_build() {
export GOPATH=${B}/bee_go
export GOCACHE=${B}/.cache
export GOENV=${B}/.env
go build
}
mee_install() {
mkdir -p ${D}/usr/bin
install -m0755 -v glow ${D}/usr/bin/
}