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 organization
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 }}
mariux64
/
bee
Public
Notifications
You must be signed in to change notification settings
Fork
2
Star
0
Code
Issues
7
Pull requests
3
Actions
Projects
0
Wiki
Security
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security
Insights
Files
7a49a40
buildtypes
autogen.sh.in
cmake.sh.in
configure.sh.in
jb.sh.in
make.sh.in
perl-module-makemaker.sh.in
perl-module.sh.in
python-module.sh.in
conf
contrib
hooks
manpages
src
.gitattributes
.gitignore
COPYING
DEPENDENCIES
INSTALL
Makefile
TODO
Breadcrumbs
bee
/
buildtypes
/
configure.sh.in
Blame
Blame
Latest commit
History
History
executable file
·
76 lines (63 loc) · 2.21 KB
Breadcrumbs
bee
/
buildtypes
/
configure.sh.in
Top
File metadata and controls
Code
Blame
executable file
·
76 lines (63 loc) · 2.21 KB
Raw
# # bee magic for configure # # Copyright (C) 2009-2012 # Marius Tolzmann <tolzmann@molgen.mpg.de> # 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 [ ! -x ${S}/configure ] ; then return fi BEE_BUILDTYPE=configure #### bee_configure() ########################################################## bee_configure() { start_cmd ${S}/configure ${DEFCONFIG} "$@" } #### bee_build() ############################################################## bee_build() { start_cmd make ${BEE_MAKEFLAGS} "$@" } #### bee_install() ############################################################ bee_install() { start_cmd make ${BEE_MAKEFLAGS} install DESTDIR=${D} "$@" } if ! grep -q datarootdir ${S}/configure ; then BEE_CONFIGURE='compat' fi # check IGNORE_DATAROOTDIR for compatibility with old bee-files if [ ${IGNORE_DATAROOTDIR} ] ; then print_error "IGNORE_DATAROOTDIR is deprecated! please use BEE_CONFIGURE='compat' instead." >&2 BEE_CONFIGURE='compat' fi if [ "${BEE_CONFIGURE}" = "compat" ] ; then unset DATAROOTDIR unset LOCALEDIR unset DOCDIR fi # create default configure options if [ -z "${DEFCONFIG}" ] ; then for var in prefix bindir sbindir libexecdir sysconfdir \ sharedstatedir localstatedir libdir includedir \ datarootdir datadir infodir localedir mandir docdir ; do DEFCONFIG="${DEFCONFIG} \${${var^^}:+--${var,,}=\${${var^^}}}" done DEFCONFIG="${DEFCONFIG} \${EPREFIX:+--exec-prefix=\${EPREFIX}}" fi # expand default configure options eval DEFCONFIG=\"${DEFCONFIG}\"
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
You can’t perform that action at this time.