Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1594)

Unified Diff: remoting/host/installer/linux/Makefile

Issue 10821028: Basic Debian packaging for Linux Me2Me host (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address comments Created 8 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | remoting/host/installer/linux/build-deb.sh » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/installer/linux/Makefile
diff --git a/remoting/host/installer/linux/Makefile b/remoting/host/installer/linux/Makefile
new file mode 100644
index 0000000000000000000000000000000000000000..92aa300bce3d0a59b14a35712df0533f7b61b793
--- /dev/null
+++ b/remoting/host/installer/linux/Makefile
@@ -0,0 +1,19 @@
+SRC = ../../../..
Jamie 2012/07/26 21:50:31 Please add a copyright header.
Lambros 2012/07/26 23:42:38 Done.
+TOOLS = $(SRC)/remoting/tools
+RELEASE = $(SRC)/out/Release
+
+BIN = $(DESTDIR)/usr/bin
Jamie 2012/07/26 21:50:31 I assume that DESTDIR is set by the enclosing Make
Lambros 2012/07/26 23:42:38 Added comment.
+LIB = $(DESTDIR)/usr/lib/chrome-remote-desktop
+SHARE = $(DESTDIR)/usr/share/chrome-remote-desktop
+
+all:
+
+install:
+ install -d $(BIN) $(LIB) $(SHARE)
+ install $(TOOLS)/me2me_virtual_host.py -m 0755 \
+ $(BIN)/me2me_virtual_host
+ install $(TOOLS)/gaia_auth.py -m 0644 $(SHARE)
+ install $(TOOLS)/keygen.py -m 0644 $(SHARE)
+ install $(RELEASE)/Xvfb-randr -m 0755 $(BIN)
Jamie 2012/07/26 21:50:31 Unless we're planning on building this from source
Lambros 2012/07/26 23:42:38 Done.
+ install $(RELEASE)/remoting_host_keygen -m 0755 $(LIB)
+ install $(RELEASE)/remoting_me2me_host -m 0755 $(LIB)
« no previous file with comments | « no previous file | remoting/host/installer/linux/build-deb.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698