mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@741 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
8678fbf5df
commit
f3d9b16620
0
build_scripts/debian/DEBIAN/conffiles
Executable file
0
build_scripts/debian/DEBIAN/conffiles
Executable file
13
build_scripts/debian/DEBIAN/control
Executable file
13
build_scripts/debian/DEBIAN/control
Executable file
@ -0,0 +1,13 @@
|
||||
Package: retroshare
|
||||
Version: 0.4.06b
|
||||
Depends: zlib1g,libqt4-core,libqt4-gui
|
||||
Section: net
|
||||
Priority: extra
|
||||
Architecture: i386
|
||||
Installed-Size: 10000
|
||||
Maintainer: Thomas Eimers <retroshare@notdefine.de>
|
||||
Description: Retroshare Instant Messenger
|
||||
RetroShare Instant Messenger is the next generation sharing network, which provides:
|
||||
Reliable Identification and Authentication of your trusted friends (RSA-Keys).
|
||||
Because you connect direct and enryepted only to your trusted friends, it is a fast and safe transfer of files.
|
||||
See http://retroshare.sourceforge.net for more details.
|
8
build_scripts/debian/DEBIAN/md5sums
Executable file
8
build_scripts/debian/DEBIAN/md5sums
Executable file
@ -0,0 +1,8 @@
|
||||
bfe163ff72b9b099466a115810f7e95f usr/bin/retroshare
|
||||
20db48f74f7e31a5674c56c436e00088 usr/bin/retroshare-nogui
|
||||
87c010b9bd9dd51b60927e61916d610d usr/bin/RetroShare
|
||||
9611435101c2623a3b6fb923fb0bc21e usr/share/retroshare/retroshare.desktop
|
||||
cb9e1ddc438968f6cff23d1f98b08363 usr/share/retroshare/retroshare.png
|
||||
ef5a0dc66c04eb2520d5578a470568ec usr/share/doc/retroshare/copyright
|
||||
7ef7e1e8ce34cf44bf088f54260ab624 usr/share/doc/retroshare/README
|
||||
92cccf17e248de268a33c8e79a0dff71 usr/share/doc/retroshare/changelog.Debian.gz
|
10
build_scripts/debian/DEBIAN/postinst
Executable file
10
build_scripts/debian/DEBIAN/postinst
Executable file
@ -0,0 +1,10 @@
|
||||
#!/bin/sh
|
||||
set -e
|
||||
if [ "$1" = "configure" ]
|
||||
then
|
||||
echo "Configure."
|
||||
cp /usr/share/retroshare/retroshare.desktop "$HOME/Desktop"
|
||||
fi
|
||||
echo type \'retroshare\' as normal user for runnig Retroshare !
|
||||
|
||||
exit 0
|
8
build_scripts/debian/DEBIAN/postrm
Executable file
8
build_scripts/debian/DEBIAN/postrm
Executable file
@ -0,0 +1,8 @@
|
||||
#!/bin/sh
|
||||
set -e
|
||||
if [ \( "$1" = "upgrade" -o "$1" = "remove" \) ]
|
||||
then
|
||||
echo -n
|
||||
fi
|
||||
|
||||
exit 0
|
21
build_scripts/debian/DEBIAN/prerm
Executable file
21
build_scripts/debian/DEBIAN/prerm
Executable file
@ -0,0 +1,21 @@
|
||||
#!/bin/sh
|
||||
set -e
|
||||
if [ \( "$1" = "upgrade" \) ]
|
||||
then
|
||||
echo Remeber: Your public keys and settings are in your home directory .pqiPGPrc !
|
||||
fi
|
||||
|
||||
if [ \( "$1" = "remove" \) ]
|
||||
then
|
||||
echo Remeber: Your public keys in your home directory .pqiPHPrc will be deleted !
|
||||
echo Type CTRL+C if you whish to abort, continue with ENTER
|
||||
read weiter
|
||||
if [ -d "$HOME/.pqiPGPrc" ] ; then
|
||||
rm "$HOME/.pqiPGPrc/" --preserve-root -r
|
||||
fi
|
||||
|
||||
if [ -e "$HOME/Desktop/retroshare.desktop" ] ; then
|
||||
rm "$HOME/Desktop/retroshare.desktop"
|
||||
fi
|
||||
fi
|
||||
exit 0
|
Loading…
Reference in New Issue
Block a user