Skip to content
Permalink
077d6ef2a4
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
@wwwutz
Latest commit 11d8f41 Mar 5, 2020 History
- fixed SRCURL
2 contributors

Users who have contributed to this file

@wwwutz @david
executable file 35 lines (25 sloc) 669 Bytes
#!/usr/bin/env beesh
# BEE_VERSION unzip-6.0.0-2
#SRCURL[0]="http://downloads.sourceforge.net/infozip/unzip60.tar.gz"
SRCURL[0]="https://beehive.molgen.mpg.de/62b490407489521db863b523a7f86375/unzip60.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
}
mee_install() {
mkdir -pv ${D}${PREFIX}
mkdir -pv ${D}${MANDIR}/man1
make -f unix/Makefile install prefix=${D}${PREFIX} MANDIR=${D}${MANDIR}/man1
}
## by default this may be 'make install DESTDIR="${D}"'