diff options
author | Martin Andre <martin@mandre.org> | 2007-07-11 06:49:57 +0000 |
---|---|---|
committer | Martin Andre <martin@mandre.org> | 2007-07-11 06:49:57 +0000 |
commit | 8bb07453cd9ce95ee1d1f9eb0c0e56838610610d (patch) | |
tree | 3b13849f0b81831fd3b0850934733cf598f64ac3 /resources/install | |
parent | eba417864b21894c0d8832d7be9e6471afcdb858 (diff) | |
download | jitsi-8bb07453cd9ce95ee1d1f9eb0c0e56838610610d.zip jitsi-8bb07453cd9ce95ee1d1f9eb0c0e56838610610d.tar.gz jitsi-8bb07453cd9ce95ee1d1f9eb0c0e56838610610d.tar.bz2 |
Copy all libs from lib/bundle except junit.jar instead of specify each library to copy.
Diffstat (limited to 'resources/install')
-rwxr-xr-x | resources/install/debian/rules | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/resources/install/debian/rules b/resources/install/debian/rules index 29b8469..cdd2709 100755 --- a/resources/install/debian/rules +++ b/resources/install/debian/rules @@ -52,22 +52,22 @@ install: build cp $(BASEDIR)/lib/*.jar debian/sip-communicator/usr/share/sip-communicator/lib/ cp $(BASEDIR)/resources/install/logging.properties debian/sip-communicator/usr/share/sip-communicator/lib/ cp $(BASEDIR)/lib/felix.client.run.properties debian/sip-communicator/usr/share/sip-communicator/lib/ - cp $(BASEDIR)/lib/bundle/org.apache.felix.servicebinder-0.8.0-SNAPSHOT.jar debian/sip-communicator/usr/share/sip-communicator/lib/bundle/org.apache.felix.servicebinder-0.8.0-SNAPSHOT.jar - cp $(BASEDIR)/lib/bundle/log4j.jar debian/sip-communicator/usr/share/sip-communicator/lib/bundle/log4j.jar + cp -r $(BASEDIR)/lib/bundle debian/sip-communicator/usr/share/sip-communicator/lib/ - #Copy OS specific and native libs + # Copy OS specific and native libs cp $(BASEDIR)/lib/os-specific/linux/*.jar debian/sip-communicator/usr/share/sip-communicator/lib/ cp -r $(BASEDIR)/lib/native/linux debian/sip-communicator/usr/share/sip-communicator/lib/native - - #Copy SIP Communicator bundles + # Copy SIP Communicator bundles cp $(BASEDIR)/sc-bundles/*.jar debian/sip-communicator/usr/share/sip-communicator/sc-bundles cp $(BASEDIR)/sc-bundles/os-specific/linux/*.jar debian/sip-communicator/usr/share/sip-communicator/sc-bundles install -m 755 debian/sip-communicator.sh debian/sip-communicator/usr/bin/sip-communicator - # Remove all slicks and CVS info. + # Remove all slicks, CVS info and unnecessary librairies. rm debian/sip-communicator/usr/share/sip-communicator/sc-bundles/*-slick.jar rm -rf debian/sip-communicator/usr/share/sip-communicator/lib/native/CVS + rm -rf debian/sip-communicator/usr/share/sip-communicator/lib/bundle/CVS + rm debian/sip-communicator/usr/share/sip-communicator/lib/bundle/junit.jar # Make felix deploy its bundles in ~/.felix/sip-communicator.bin sed -i -e "s/felix.cache.profiledir=sip-communicator.bin/felix.cache.profile=sip-communicator.bin/" debian/sip-communicator/usr/share/sip-communicator/lib/felix.client.run.properties |