Skip to content

Commit

Permalink
unzip: create new bee-file from template
Browse files Browse the repository at this point in the history
fix problem with nextcloud zip-archives
  • Loading branch information
david committed Nov 7, 2018
1 parent 9688d19 commit 89b072a
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions unzip.be0
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
#!/usr/bin/env beesh

# BEE_VERSION unzip-6.0.0-1

SRCURL[0]="http://downloads.sourceforge.net/infozip/unzip60.tar.gz"


# PATCHURL+=()

# EXCLUDE+=()

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}"'

0 comments on commit 89b072a

Please sign in to comment.