diff --git a/ghostscript-fonts-std-8.11-0.bee b/ghostscript-fonts-std-8.11-0.bee deleted file mode 100755 index adda42758..000000000 --- a/ghostscript-fonts-std-8.11-0.bee +++ /dev/null @@ -1,32 +0,0 @@ -#!/bin/env beesh - -SRCURL[0]="http://downloads.sourceforge.net/gs-fonts/ghostscript-fonts-std-8.11.tar.gz" - -#SRCURL[2]="http://downloads.sourceforge.net/gs-fonts/gnu-gs-fonts-other-6.0.tar.gz" - -PGRP=( uncategorized ) - - -BEE_CONFIGURE=none - -B=${S} - -mee_patch() { - bee_patch -} - -mee_extract() { - mkdir -p ${S} -} - -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 -} diff --git a/ghostscript-fonts-std.be0 b/ghostscript-fonts-std.be0 new file mode 100755 index 000000000..afeaa6416 --- /dev/null +++ b/ghostscript-fonts-std.be0 @@ -0,0 +1,33 @@ +#!/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]* +}