Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changes to the Makefile and kjv.tsv #17

Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
b92b762
Apocrypha added
LukeSmithxyz Mar 3, 2019
f4ad735
makefile bloat added
LukeSmithxyz Mar 3, 2019
f6e6f63
readme fix
LukeSmithxyz Mar 11, 2019
9b48c5c
Rebranded to kjva
Matthew-Tate-Scarbrough Dec 22, 2019
2a93e0d
Rebranded to kjva
Matthew-Tate-Scarbrough Dec 22, 2019
5966c6f
Add files via upload
Matthew-Tate-Scarbrough Dec 22, 2019
b2a83dc
Delete kjv.tsv
Matthew-Tate-Scarbrough Dec 22, 2019
a069469
Updated README.md
Matthew-Tate-Scarbrough Dec 22, 2019
12d872c
Added the disclaimer
Matthew-Tate-Scarbrough Dec 22, 2019
da80f2a
Personalised the build instructions
Matthew-Tate-Scarbrough Dec 22, 2019
ea0a77c
Update README.md
Matthew-Tate-Scarbrough Dec 22, 2019
049a36e
Fixed links
Matthew-Tate-Scarbrough Dec 22, 2019
f4546fd
Update kjva.sh
Matthew-Tate-Scarbrough Dec 22, 2019
e323e65
Update kjva.sh
Matthew-Tate-Scarbrough Dec 22, 2019
7a07b2b
Fixed typo
Matthew-Tate-Scarbrough Jan 4, 2020
b7b3bd1
Added basic info about branches
Matthew-Tate-Scarbrough Jan 5, 2020
4f76b53
FreeFonts evangelism
Matthew-Tate-Scarbrough Jan 5, 2020
73a522f
Major update!
Matthew-Tate-Scarbrough Feb 7, 2020
36d2ab9
Update README.md
Matthew-Tate-Scarbrough Feb 7, 2020
3481401
Add files via upload
Matthew-Tate-Scarbrough Feb 7, 2020
6011317
Update README.md
Matthew-Tate-Scarbrough Feb 7, 2020
2b0d3ca
Added info about master/kjv
Matthew-Tate-Scarbrough Feb 7, 2020
8b4bfd1
A bit of spice--nothing much
Matthew-Tate-Scarbrough May 8, 2020
a779919
Colours update!
Matthew-Tate-Scarbrough May 8, 2020
722ca04
Better image...
Matthew-Tate-Scarbrough May 8, 2020
c04208e
Cleaning for Colours Update
Matthew-Tate-Scarbrough May 8, 2020
c583ac1
PSA
Matthew-Tate-Scarbrough May 8, 2020
1be1337
Misc.
Matthew-Tate-Scarbrough May 8, 2020
7b22fe3
Misc.
Matthew-Tate-Scarbrough May 8, 2020
357b8c5
New pic for the colour update
Matthew-Tate-Scarbrough May 8, 2020
6f56c6d
Removed -e
Matthew-Tate-Scarbrough May 10, 2020
00ef004
Added kjv2latex utility
Jul 6, 2020
a849fab
Fixed a typo
Oct 25, 2020
cc198fd
Updated README
May 14, 2021
155ed7a
Initial commit of PCE
May 15, 2021
f8de118
HTML version of the TSV
May 15, 2021
57a9dcd
Added alternative *.tsv that uses ANSI escapes
May 15, 2021
71c2b21
A few changes
May 15, 2021
01bd1d2
Updated README.
May 15, 2021
0f92199
Deleted old, unrelated files
May 15, 2021
3e5d38e
Merge branch 'master' of https://github.com/bontibon/kjv into kjv-bon…
May 15, 2021
928d735
Merge branch 'pce' of file:///home/matthew_scarbrough/.local/src/kjv …
May 15, 2021
d3810be
Added install and uninstall arguments
May 15, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 0 additions & 24 deletions LICENSE

This file was deleted.

12 changes: 12 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
PREFIX = /usr/local

OBJS = src/kjv_main.o \
src/kjv_match.o \
src/kjv_ref.o \
Expand Down Expand Up @@ -31,3 +33,13 @@ data/kjv_data.c: data/kjv.tsv data/generate.awk src/kjv_data.h
.PHONY: clean
clean:
rm -rf $(OBJS) kjv

.PHONY: install
install: kjv
mkdir -p $(DESTDIR)$(PREFIX)/bin
cp -f kjv $(DESTDIR)$(PREFIX)/bin/
chmod +x $(DESTDIR)$(PREFIX)/bin/kjv

.PHONY: uninstall
uninstall:
rm -f $(DESTDIR)$(PREFIX)/bin/kjv
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,15 @@

# kjv [![AUR](https://img.shields.io/badge/AUR-kjv--git-blue.svg)](https://aur.archlinux.org/packages/kjv-git/)

Read the Word of God from your terminal
Read the Word of God from your terminal!

This fork surrounds the Pure Cambridge Edition (PCE) of the King James
Version (KJV)—a version of the KJV based off of critical scholarship of
various older publications of the Cambridge editions of the KJV.

The PCE text is taken from [here](http://bibleprotector.com/). A
plain-text, tab-separated version was available. It has been
lightly-modified for style.

## Usage

Expand Down
Loading