Skip to content

zip: fix SRCURL #1768

Merged
merged 1 commit into from
Mar 10, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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


}