Skip to content
Navigation Menu
Toggle navigation
Sign in
In this repository
All GitHub Enterprise
↵
Jump to
↵
No suggested jump to results
In this repository
All GitHub Enterprise
↵
Jump to
↵
In this user
All GitHub Enterprise
↵
Jump to
↵
In this repository
All GitHub Enterprise
↵
Jump to
↵
Sign in
Reseting focus
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
mariux
/
bee
Public
forked from
mariux64/bee
Notifications
You must be signed in to change notification settings
Fork
0
Star
1
Code
Pull requests
0
Actions
Projects
0
Security
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security
Insights
Files
db7613e
buildtypes
autogen.sh.in
autotools.sh.in
cmake.sh.in
configure.sh.in
haskell-module.sh.in
jb.sh.in
make.sh.in
perl-module-makemaker.sh.in
perl-module.sh.in
python-module.sh.in
r-package.sh.in
conf
contrib
hooks
manpages
src
.gitattributes
.gitignore
COPYING
DEPENDENCIES
INSTALL
Makefile
TODO
Breadcrumbs
bee
/
buildtypes
/
python-module.sh.in
Blame
Blame
Latest commit
History
History
46 lines (38 loc) · 1.24 KB
Breadcrumbs
bee
/
buildtypes
/
python-module.sh.in
Top
File metadata and controls
Code
Blame
46 lines (38 loc) · 1.24 KB
Raw
# # # bee magic for python modules # # Copyright (C) 2009-2016 # Marius Tolzmann <m@rius.berlin> # Tobias Dreyer <dreyer@molgen.mpg.de> # and other bee developers # # This file is part of bee. # # bee is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. # if [ ! -r ${S}/setup.py ] ; then return fi BEE_BUILDTYPE_DETECTED=python-module : ${PYTHON:=python} build_in_sourcedir #### bee_build() ############################################################## bee_build() { start_cmd ${PYTHON} setup.py build "$@" } #### bee_install() ############################################################ bee_install() { start_cmd ${PYTHON} setup.py install --root=${D} "$@" }
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
You can’t perform that action at this time.