aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVMiklos <vmiklos@frugalware.org>2007-08-21 20:55:32 +0200
committerVMiklos <vmiklos@frugalware.org>2007-08-21 20:55:32 +0200
commit2fcad6ee4986bc01d2c526ed84912519d111fa0e (patch)
tree9d7d27c37a5f3e7dfff9e19c93939fe2eab9d53b
parent8e3058bc70420a21393769de5e98b552bbf16acc (diff)
make install installs skyped
-rw-r--r--skype/Makefile4
-rw-r--r--skype/README7
-rw-r--r--skype/config.mak.in1
3 files changed, 9 insertions, 3 deletions
diff --git a/skype/Makefile b/skype/Makefile
index c5e8074f..34d56c88 100644
--- a/skype/Makefile
+++ b/skype/Makefile
@@ -3,9 +3,11 @@
skype.so: skype.c config.mak
$(CC) $(CFLAGS) -shared -o skype.so skype.c $(LDFLAGS)
-install: skype.so
+install: skype.so skyped.py
$(INSTALL) -d $(DESTDIR)$(plugindir)
+ $(INSTALL) -d $(DESTDIR)$(sbindir)
$(INSTALL) skype.so $(DESTDIR)$(plugindir)
+ $(INSTALL) skyped.py $(DESTDIR)$(sbindir)/skyped
client: client.c
diff --git a/skype/README b/skype/README
index 6c3bb605..9e4ee474 100644
--- a/skype/README
+++ b/skype/README
@@ -64,10 +64,11 @@ make
make install
----
-- Start skyped (the tcp server):
+- Start Skype and `skyped` (the tcp server):
----
-python skyped.py
+skype
+skyped
----
NOTE: It's important to start skyped on the same machine and using the same
@@ -115,6 +116,8 @@ NOTE: the <pass> option is not used currently.
== What needs to be done (aka. TODO)
+- `--daemon` option for `skyped`
+
== I would like to have support for ...
If something does not work and it's not in the TODO section, then please contact me!
diff --git a/skype/config.mak.in b/skype/config.mak.in
index 7a16cbb1..cfdafe82 100644
--- a/skype/config.mak.in
+++ b/skype/config.mak.in
@@ -3,5 +3,6 @@ LDFLAGS = @LDFLAGS@
INSTALL = @INSTALL@
prefix = @prefix@
exec_prefix = @exec_prefix@
+sbindir = @sbindir@
libdir = @libdir@
plugindir = ${libdir}/bitlbee