diff options
author | Miklos Vajna <vmiklos@frugalware.org> | 2008-01-15 04:10:35 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@frugalware.org> | 2008-01-15 04:10:35 +0100 |
commit | 3b495c08bd989f5ef3249a41b2caa37f9dabfa7d (patch) | |
tree | 99c82c23b9d58b2a145e641c0cf7aa656184ec6d | |
parent | 57f04408a7ce65084d5a41221bb4f5ed71895a1f (diff) |
add @version@ magic and prefer tarballs
people hate autotools (well, i can understand them as i hate automake as well),
so prefer the tarball method where you can avoid make prepare
-rw-r--r-- | skype/Makefile | 1 | ||||
-rw-r--r-- | skype/README | 13 |
2 files changed, 8 insertions, 6 deletions
diff --git a/skype/Makefile b/skype/Makefile index 69f71624..af826985 100644 --- a/skype/Makefile +++ b/skype/Makefile @@ -48,6 +48,7 @@ doc: HEADER.html Changelog HEADER.html: README ln -s README HEADER.txt asciidoc -a toc -a numbered -a sectids HEADER.txt + sed -i 's|@VERSION@|$(VERSION)|g' HEADER.html rm HEADER.txt Changelog: .git/refs/heads/master diff --git a/skype/README b/skype/README index 72716812..c9c2a70a 100644 --- a/skype/README +++ b/skype/README @@ -74,15 +74,16 @@ $ make - Get the plugin code: ---- -$ git clone git://vmiklos.hu/bitlbee-skype +$ wget http://vmiklos.hu/project/bitlbee-skype/bitlbee-skype-@VERSION@.tar.gz +$ tar xf bitlbee-skype-@VERSION@.tar.gz +$ cd bitlbee-skype-@VERSION@ ---- -(Or you can use the tarballs below, see the Changelog about what -features/bugfixes will you miss in this case). +NOTE: Alternatively, if you want to test the latest code, you can use `git +clone git://vmiklos.hu/bitlbee-skype` to get the code directly from git. -NOTE: It doesn't matter where do you get it, it'll install the plugin to -`/usr/local` by default (that's the location where BitlBee searches for plugins -by default). +It doesn't matter where do you get it, it'll install the plugin to `/usr/local` +by default (that's the location where BitlBee searches for plugins by default). - Compile and install it: |