Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
bsdiff: fix download url
- benicify
- source died
```
Connecting to www.daemonology.net|34.218.139.66|:80... connected.
HTTP request sent, awaiting response... 403 Forbidden
2020-09-14 13:34:03 ERROR 403: Forbidden.
```
  • Loading branch information
wwwutz committed Sep 14, 2020
1 parent 6a37bf7 commit 5ebe70a
Showing 1 changed file with 3 additions and 52 deletions.
55 changes: 3 additions & 52 deletions bsdiff.be0
@@ -1,44 +1,14 @@
#!/usr/bin/env beesh

# BEE_VERSION bsdiff-4.3-0
# BEE_VERSION bsdiff-4.3-1

## this file was created by bee init and should be executed to build a
## bee-package. (Additional hints are located at the end of this file.)

###############################################################################
## The source URL(s) define the location of the sources that will be
## downloaded. Version variables may be used to simplify reuse of this bee-file.

SRCURL[0]="https://www.daemonology.net/bsdiff/bsdiff-${PKGVERSION}.tar.gz"

###############################################################################
## Add URLs/pathes to patch files to the PATCHURL array.
## The sources will be patched in the order of the array.

# PATCHURL+=()

###############################################################################
## Uncomment the next statement, if the software may not be able to be built
## outside the source directory and needs to be built inside the source
## directory.
#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

###############################################################################
## bee cannot detect buildtypes specified in subdirectories.
## Sometimes packages "hide" the real sources in a subdirectory named
## 'src' or 'cmake' or ..
## use 'sourcesubdir_append' to specify this directory if known.

# sourcesubdir_append src


###############################################################################
## Change the default (auto-detected) steps to
## extract, patch, configure/setup, build and install the software.
## Make sure the mee_install function does install everything to the
## image directory "${D}"

#mee_extract() {
# bee_extract "${@}"
#}
Expand All @@ -65,22 +35,3 @@ mee_install() {
cp -v ${B}/bspatch.1 ${D}/usr/share/man/man1
chmod -v 644 ${D}/usr/share/man/man1/*
}
## by default this may be 'make install DESTDIR="${D}"'

###############################################################################
##
## Additional hints:
##
## The name of this bee-file should follow the following naming convention:
## pkgname-pkgversion-pkgrevision.bee
##
## You may remove all comments as long as SRCURL[0] is set.
##
## Everything in this file will be executed in a bash environment.
##
## Build the package by executing
## './pkg-version-N.bee' or
## 'beesh ./pkg-version-N.bee'
##
## see http://beezinga.org/
##

0 comments on commit 5ebe70a

Please sign in to comment.