diff options
| -rw-r--r-- | skype/Makefile | 4 | ||||
| -rw-r--r-- | skype/README | 7 | ||||
| -rw-r--r-- | skype/config.mak.in | 1 | 
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 | 
