]> mj.ucw.cz Git - paperjam.git/commitdiff
This will be paperjam-0.1 v0.1
authorMartin Mares <mj@ucw.cz>
Sat, 7 Apr 2018 09:24:42 +0000 (11:24 +0200)
committerMartin Mares <mj@ucw.cz>
Sat, 7 Apr 2018 09:24:42 +0000 (11:24 +0200)
LICENSE [new file with mode: 0644]
Makefile
README.md [new file with mode: 0644]

diff --git a/LICENSE b/LICENSE
new file mode 100644 (file)
index 0000000..6022fc3
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,12 @@
+Isolate 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 2 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.
+
+If you have less than 10 copies of the GPL on your system :-),
+you can find it at http://www.gnu.org/licenses/.
index 5704100e55343f10c00bff5e3fc4f32247dfa6a2..01298898c58624b32eb5fab1edf2a800d77acaa4 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -23,4 +23,11 @@ clean:
        rm -f *.o
        rm -f paperjam
 
-.PHONY: all clean
+release:
+       git tag v$(VERSION)
+       git push --tags
+       git archive --format=tar --prefix=paperjam-$(VERSION)/ HEAD | gzip >paperjam-$(VERSION).tar.gz
+       rsync paperjam-$(VERSION).tar.gz atrey:ftp/linux/
+       ssh jw 'cd web && bin/release-prog paperjam $(VERSION)'
+
+.PHONY: all clean release
diff --git a/README.md b/README.md
new file mode 100644 (file)
index 0000000..0c32a9a
--- /dev/null
+++ b/README.md
@@ -0,0 +1,17 @@
+paperjam
+========
+
+PaperJam is a tool for processing PDF documents: re-ordering pages,
+scaling and rotating them, placing multiple pages on one sheet of paper,
+adding cropmarks, and many other tricks.
+
+At this point, PaperJam has no documentation, but you can obtain
+extensive help on its usage by running "paperjam --help".
+
+PaperJam was written by Martin Mareš <mj@ucw.cz> and it can be freely
+used and distributed under the terms of the GNU GPL (see LICENSE for details).
+
+To compile PaperJam, you need the headers for the libqpdf and libpaper
+libraries (usually available as libqpdf-dev and libpaper-dev packages).
+
+You may need `a2x` (found in [AsciiDoc](http://www.methods.co.nz/asciidoc/a2x.1.html)) for building manual pages.