consistent license, various updates
[buildscripts] / org-mode
1 #!/bin/bash -l
2 # Copyright (C) 2016 Ian Kelling
3
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at
7
8 # http://www.apache.org/licenses/LICENSE-2.0
9
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15
16 # git clone git://orgmode.org/org-mode.git
17 # texinfo is all that is technically needed, but having tex for math is good
18
19 set -eE -o pipefail
20 trap 'echo "$0:$LINENO:error: \"$BASH_COMMAND\" returned $?"' ERR
21
22 logq pi git texlive install-info
23
24 cd /a/opt/org-mode
25
26 if isdeb; then
27 logq pi texinfo
28 else
29 logq pi texinfo-tex
30 fi
31 # rm -rf !(.git)
32 # i checkout -f errbuff
33
34 if [[ $1 == -u ]]; then
35 git fetch
36 git rebase master
37 fi
38
39 # org mode doesn't make native binaries, so it is portable, and we keep it .emacs.d
40 # org-learn is a dependency of org-drill
41 dd of=local.mk <<'EOF'
42 ORG_ADD_CONTRIB = org-drill org-learn
43 EMACS = /usr/local/bin/emacs
44 prefix = /a/c/.emacs.d
45 EOF
46
47 d=/a/c/.emacs.d/emacs
48 if [[ -e $d ]]; then
49 d2=${d}-disabled
50 rm -rf $d2
51 mv $d $d2
52 fi
53 logq make install