summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDaniel Kahn Gillmor <dkg@fifthhorseman.net>2010-03-23 18:03:29 -0400
committerDaniel Kahn Gillmor <dkg@fifthhorseman.net>2010-03-23 18:03:29 -0400
commitec5db66147a9453bc576e2fcd373d2f09d126c96 (patch)
tree693b59bcf85c4f50edf28a5e708d2cd77c3cd592 /Makefile
parent56401df89091a60247d8bb625e032b7030d6d548 (diff)
removing git commit id from the VERSION file, since it is ambiguous for packaged versions vs. versions installed by "make install" (and complicated to build cleanly anyway)
Diffstat (limited to 'Makefile')
-rwxr-xr-xMakefile7
1 files changed, 2 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index 062816c..9f5028a 100755
--- a/Makefile
+++ b/Makefile
@@ -5,7 +5,7 @@
# © 2008-2010 Daniel Kahn Gillmor <dkg@fifthhorseman.net>
# Licensed under GPL v3 or later
-MONKEYSPHERE_VERSION:=$(shell head -n1 Changelog | sed 's/.*(\([^-]*\)).*/\1/')
+MONKEYSPHERE_VERSION = `head -n1 Changelog | sed 's/.*(\([^-]*\)).*/\1/'`
# these defaults are for debian. porters should probably adjust them
# before calling make install
@@ -17,9 +17,6 @@ MANPREFIX ?= $(PREFIX)/share/man
# nothing actually needs to be built now.
all:
-VERSION: Changelog
- sed 's/^Monkeysphere .*$$/Monkeysphere '$(MONKEYSPHERE_VERSION)'/' -i VERSION
-
debian-package:
git buildpackage -uc -us
@@ -42,7 +39,7 @@ install: all installman
mkdir -p $(DESTDIR)$(PREFIX)/share/monkeysphere/m $(DESTDIR)$(PREFIX)/share/monkeysphere/mh $(DESTDIR)$(PREFIX)/share/monkeysphere/ma $(DESTDIR)$(PREFIX)/share/monkeysphere/transitions
mkdir -p $(DESTDIR)$(ETCPREFIX)/etc/monkeysphere
mkdir -p $(DESTDIR)$(PREFIX)/share/doc/monkeysphere
- install -m 0644 VERSION $(DESTDIR)$(PREFIX)/share/monkeysphere
+ printf "Monkeysphere %s\n" $(MONKEYSPHERE_VERSION) > $(DESTDIR)$(PREFIX)/share/monkeysphere/VERSION
install src/monkeysphere $(DESTDIR)$(PREFIX)/bin
install src/monkeysphere-host src/monkeysphere-authentication $(DESTDIR)$(PREFIX)/sbin
install -m 0644 src/share/common $(DESTDIR)$(PREFIX)/share/monkeysphere