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 33 lines (23 sloc) 639 Bytes
#!/bin/env beesh
# BEE_VERSION ghostscript-fonts-std-8.11-1
#SRCURL[0]="http://downloads.sourceforge.net/gs-fonts/ghostscript-fonts-std-8.11.tar.gz"
SRCURL[0]="https://beehive.molgen.mpg.de/6865682b095f8c4500c54b285ff05ef6/ghostscript-fonts-std-8.11.tar.gz"
BEE_CONFIGURE=none
build_in_sourcedir
#mee_patch() {
# bee_patch
#}
#mee_extract() {
# bee_extract
#}
#mee_build() {
# return 0
#}
mee_install() {
mkdir -p ${D}/usr/share/ghostscript
tar -xovf ${F}/ghostscript-fonts-std-8.11.tar.gz \
-C ${D}/usr/share/ghostscript
}
mee_install_post() {
cd ${D} && rm -v usr/share/ghostscript/fonts/[CRT]*
}