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
master
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
/
perl-module-makemaker.sh.in
Blame
Blame
Latest commit
History
History
56 lines (46 loc) · 1.43 KB
Breadcrumbs
bee
/
buildtypes
/
perl-module-makemaker.sh.in
Top
File metadata and controls
Code
Blame
56 lines (46 loc) · 1.43 KB
Raw
# # bee magic for perl MakeMaker # # 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}/Makefile.PL ] ; then return fi BEE_BUILDTYPE_DETECTED=perl-makemaker : ${PERL:=perl} build_in_sourcedir #### bee_configure() ########################################################## bee_configure() { start_cmd ${PERL} Makefile.PL \ DESTDIR=${D} \ "${@}" } #### bee_build() ############################################################## bee_build() { start_cmd make ${BEE_MAKEFLAGS} \ "${@}" } #### bee_install() ############################################################ bee_install() { start_cmd make ${BEE_MAKEFLAGS} \ install \ "${@}" }
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
You can’t perform that action at this time.