aboutsummaryrefslogtreecommitdiffstats
path: root/INSTALL
diff options
context:
space:
mode:
authorGuilhem Moulin <guilhem@fripost.org>2015-03-30 14:31:37 +0200
committerGuilhem Moulin <guilhem@fripost.org>2015-03-30 14:31:37 +0200
commit08ff966676630a2446cdbb1bd493d14787b091be (patch)
treeb7514a987f830f41602420f4277095d1a7654c88 /INSTALL
parent5af89eb57e11b29dfd82d3a52618b0c0dad1b24a (diff)
Add installation intructions.
Diffstat (limited to 'INSTALL')
-rw-r--r--INSTALL21
1 files changed, 21 insertions, 0 deletions
diff --git a/INSTALL b/INSTALL
new file mode 100644
index 0000000..090e834
--- /dev/null
+++ b/INSTALL
@@ -0,0 +1,21 @@
+To install the CLI and Iceweasel/Firefox addon, run (requires 'gzip' and
+'zip'):
+
+ make -C cli
+ sudo make -C cli install
+
+ make -C xul-ext ../icevault@guilhem.org.xpi
+ cp icevault@guilhem.org.xpi ~/.mozilla/firefox/*.default/extensions
+
+
+However users familiar with Debian packaging will probably prefer to
+build their own package:
+
+ git checkout debian
+ AUTO_DEBSIGN=no git buildpackage --git-force-create
+ VERSION=$(sed -nr '/^icevault \(([^)]+)\).*/ {s//\1/p;q}' debian/changelog)
+ sudo dpkg -i ../icevault_${VERSION}_all.deb ../xul-ext-icevault_${VERSION}_all.deb
+
+(Add the option '--git-upstream-tree=BRANCH' to the 'git buildpackage'
+command to package the development version rather than the last tagged
+release.)