Skip to content

Commit

Permalink
Merge pull request #1768 from mariux64/fix-srcurl-zip300
Browse files Browse the repository at this point in the history
zip: fix SRCURL
  • Loading branch information
wwwutz authored Mar 10, 2020
2 parents 9f200bb + b8db3e7 commit c27b272
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 43 deletions.
43 changes: 0 additions & 43 deletions zip-300-0.bee

This file was deleted.

42 changes: 42 additions & 0 deletions zip.be0
Original file line number Diff line number Diff line change
@@ -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


}

0 comments on commit c27b272

Please sign in to comment.