Skip to content
Permalink
master
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
 
 
Cannot retrieve contributors at this time
executable file 37 lines (28 sloc) 807 Bytes
#!/usr/bin/env beesh
# BEE_VERSION bsdiff-4.3-1
#SRCURL[0]="https://www.daemonology.net/bsdiff/bsdiff-${PKGVERSION}.tar.gz"
SRCURL[0]="https://beehive.molgen.mpg.de/e6d812394f0e0ecc8d5df255aa1db22a/bsdiff-4.3.tar.gz"
# build_in_sourcedir
# sourcesubdir_append src
#mee_extract() {
# bee_extract "${@}"
#}
mee_patch() {
sed -e '/^\.ifndef/ s/^\.//' -e '/^\.endif/ s/^\.//' -i ${S}/Makefile
}
#mee_configure() {
# bee_configure
#}
#mee_build() {
# bee_build
#}
mee_install() {
mkdir -vp ${D}/usr/bin
cp -v ${B}/bsdiff ${D}/usr/bin
cp -v ${B}/bspatch ${D}/usr/bin
chmod -v 755 ${D}/usr/bin/*
mkdir -vp ${D}/usr/share/man/man1
cp -v ${B}/bsdiff.1 ${D}/usr/share/man/man1
cp -v ${B}/bspatch.1 ${D}/usr/share/man/man1
chmod -v 644 ${D}/usr/share/man/man1/*
}