Permalink
Newer
100755
98 lines (76 sloc)
3.07 KB
5
# ***** created by *****
6
#
7
# bee download git://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git
8
# bee init /src/mariux/beeroot/downloads/linux-firmware-0_t1449454640_bbe4917.tar.bz2
9
# fixup mee_install in the created bee file (select the images we want)
10
11
## this file was created by bee init and should be executed to build a
12
## bee-package. (Additional hints are located at the end of this file.)
13
14
###############################################################################
15
## The source URL(s) define the location of the sources that will be
16
## downloaded. Version variables may be used to simplify reuse of this bee-file.
17
18
SRCURL[0]="/src/mariux/beeroot/downloads/linux-firmware-0_${PKGEXTRAVERSION}.tar.bz2"
19
20
###############################################################################
21
## Add URLs/pathes to patch files to the PATCHURL array.
22
## The sources will be patched in the order of the array.
23
24
# PATCHURL+=()
25
26
###############################################################################
27
## Add filename patterns to the EXCLUDE array of files that should not
28
## be added to you package but may be present in the image directory.
29
30
# EXCLUDE+=()
31
32
###############################################################################
33
## Uncomment the next statement, if the software may not be able to be build
34
## outside the source directory and need to be build inside the source
35
## directory.
36
37
# build_in_sourcedir
38
39
###############################################################################
40
## bee cannot detect buildtypes specified in subdirectories.
41
## Sometimes packages "hide" the real sources in a subdirectory named
42
## 'src' or 'cmake' or ..
43
## use 'sourcesubdir_append' to specify this directory if known.
44
45
# sourcesubdir_append src
46
47
48
###############################################################################
49
## Change the default (auto-detected) steps to
50
## extract, patch, configure/setup, build and install the software.
51
## Make sure the mee_install function does install everything to the
52
## image directory "${D}"
53
54
#mee_extract() {
55
# bee_extract "${@}"
56
#}
57
58
#mee_patch() {
59
# bee_patch "${@}"
60
#}
61
62
#mee_configure() {
64
#}
65
66
#mee_build() {
67
# bee_build
68
#}
69
70
mee_install() {
71
mkdir -p $D/lib/firmware
78
}
79
80
## by default this may be 'make install DESTDIR="${D}"'
81
82
###############################################################################
83
##
84
## Additional hints:
85
##
86
## The name of this bee-file should follow the following naming convention:
87
## pkgname-pkgversion-pkgrevision.bee
88
##
89
## You may remove all comments as long as SRCURL[${PKGVERSION}] is set.
90
##
91
## Everything in this file will be executed in a bash environment.
92
##
93
## Build the package by executing
94
## './pkg-version-N.bee' or
95
## 'beesh ./pkg-version-N.bee'
96
##
97
## see http://beezinga.org/
98
##