-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1768 from mariux64/fix-srcurl-zip300
zip: fix SRCURL
- Loading branch information
Showing
2 changed files
with
42 additions
and
43 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
||
|
||
} |