diff --git a/zip-300-0.bee b/zip-300-0.bee deleted file mode 100755 index c78056bda..000000000 --- a/zip-300-0.bee +++ /dev/null @@ -1,43 +0,0 @@ -#!/bin/env beesh - -SRCURL[0]="ftp://ftp.info-zip.org/pub/infozip/src/zip30.tgz" - -PATCHURL[0]="" - -PGRP=( uncategorized ) - - - -BEE_CONFIGURE=none - - -B=${S} - -# EXCLUDE="" - -mee_patch() { - bee_patch -} - -mee_configure() { - bee_configure -} - -mee_build() { - make -f unix/Makefile generic -} - -mee_install() { - - mkdir -p ${D}${BINDIR} - - mkdir -p ${D}${MANDIR}/man1 - - install -m 755 zip zipnote zipsplit zipcloak ${D}${BINDIR} - - install -m 644 man/zip.1 ${D}${MANDIR}/man1 - -} - - - diff --git a/zip.be0 b/zip.be0 new file mode 100755 index 000000000..afbfd0ba5 --- /dev/null +++ b/zip.be0 @@ -0,0 +1,42 @@ +#!/usr/bin/env beesh + +# BEE_VERSION zip-300-1 + +# more info: http://www.linuxfromscratch.org/blfs/view/cvs/general/zip.html + +# SRCURL[0]="ftp://ftp.info-zip.org/pub/infozip/src/zip30.tgz" +# SRCURL[0]="https://downloads.sourceforge.net/infozip/zip30.tar.gz" +SRCURL[0]="https://beehive.molgen.mpg.de/7b74551e63f8ee6aab6fbc86676c0d37/zip30.tar.gz" + +# PATCHURL+=() + +build_in_sourcedir + +# sourcesubdir_append src + +#mee_extract() { +# bee_extract "${@}" +#} + +#mee_patch() { +# bee_patch "${@}" +#} + +#mee_configure() { +# bee_configure +#} + +mee_build() { + make -f unix/Makefile generic_gcc +} + +mee_install() { + + mkdir -p ${D}${BINDIR} + mkdir -p ${D}${MANDIR}/man1 + + install -m 755 zip zipnote zipsplit zipcloak ${D}${BINDIR} + install -m 644 man/zip.1 ${D}${MANDIR}/man1 + + +}