Skip to content
Permalink
83e0d7979c
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 6cbdeda Jan 17, 2020 History
- storage.googleapis.com down
- no update, just fix build
2 contributors

Users who have contributed to this file

@wwwutz @thomas
executable file 51 lines (35 sloc) 1.17 KB
#!/usr/bin/env beesh
# The pyed piper, or pyp, is a command line utility for parsing text output and generating complex
# unix commands using standard python methods. pyp is powered by python, so any
# standard python string or list operation is available.
# Note: the version is only found in the script we are about to install.
# BEE_VERSION pyp-2.12-1
## The source URL(s) array
SRCURL[0]="https://storage.googleapis.com/google-code-archive-source/v2/code.google.com/pyp/source-archive.zip"
SRCURL[0]="/src/mariux/md5repo/52b83759408359c214438abce9d73f9e/source-archive.zip"
## Add URLs/pathes to patch files
# PATCHURL+=()
## files that should not be added from the image directory.
# EXCLUDE+=()
## uncomment to change default
# build_in_sourcedir
## specify different source directory
# sourcesubdir_append src
# mee_extract() {
# bee_extract "${@}"
# }
#mee_patch() {
# bee_patch "${@}"
#}
#mee_configure() {
# bee_configure
#}
#mee_build() {
# bee_build
#}
## mee_install() should install into "${D}"
## default: 'make install DESTDIR="${D}"'
mee_install() {
start_cmd mkdir -p -v ${D}${BINDIR}
start_cmd install -v -m 755 ${S}/trunk/pyp ${D}${BINDIR}
}