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
conf
contrib
hooks
manpages
src
.gitattributes
.gitignore
COPYING
DEPENDENCIES
INSTALL
Makefile
TODO
Breadcrumbs
bee
/
INSTALL
Blame
Blame
Latest commit
History
History
51 lines (32 loc) · 1.18 KB
Breadcrumbs
bee
/
INSTALL
Top
File metadata and controls
Code
Blame
51 lines (32 loc) · 1.18 KB
Raw
How to install bee: make install This will install bee to PREFIX=/usr Change installation prefix: make PREFIX=/usr/local install Be sure to provide installation prefixes during make and make install if you want to first build and later install bee (e.g. make PREFIX=/usr/local && make PREFIX=/usr/local install) Change destination directory for temporary installation and later packaging: make DESTDIR=/path/to/destdir PREFIX=/usr/local install All variables available to change installation directories: PREFIX = /usr EPREFIX = ${PREFIX} SBINDIR = ${EPREFIX}/sbin BINDIR = ${EPREFIX}/bin LIBDIR = ${EPREFIX}/lib LIBEXECDIR = ${EPREFIX}/libexec DATADIR = ${PREFIX}/share MANDIR = ${DATADIR}/man SYSCONFDIR = ${PREFIX}/etc DESTDIR = Cleanup build: e.g. after building with wrong prefixes make clean Rebuild and install with new prefix in destdir: make clean install PREFIX=/usr/local DESTDIR=/tmp/destdir Install latest bee with bee (requires git to be installed): bee init $(bee download git://github.com/bee/bee.git) \ --execute \ --prefix=/usr/local bee update bee
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
You can’t perform that action at this time.