Permalink
Newer
100755
45 lines (31 sloc)
877 Bytes
1
#!/usr/bin/env beesh
2
3
# Note: the version is only found in the script we are about to install.
4
# BEE_VERSION pyp-2.12-0
5
6
## The source URL(s) array
7
SRCURL[0]="https://storage.googleapis.com/google-code-archive-source/v2/code.google.com/pyp/source-archive.zip"
8
9
## Add URLs/pathes to patch files
10
# PATCHURL+=()
11
12
## files that should not be added from the image directory.
13
# EXCLUDE+=()
14
15
16
## uncomment to change default
17
# build_in_sourcedir
18
19
## specify different source directory
20
# sourcesubdir_append src
21
22
23
# mee_extract() {
24
# bee_extract "${@}"
25
# }
26
27
#mee_patch() {
28
# bee_patch "${@}"
29
#}
30
31
#mee_configure() {
32
# bee_configure
33
#}
34
35
#mee_build() {
36
# bee_build
37
#}
38
39
## mee_install() should install into "${D}"
40
## default: 'make install DESTDIR="${D}"'
41
42
mee_install() {
43
start_cmd mkdir -p -v ${D}${BINDIR}
44
start_cmd install -v -m 755 ${S}/trunk/pyp ${D}${BINDIR}
45
}