diff options
author | Nicolás Reynolds <fauno@kiwwwi.com.ar> | 2011-02-07 18:08:39 -0300 |
---|---|---|
committer | Nicolás Reynolds <fauno@kiwwwi.com.ar> | 2011-02-07 18:08:39 -0300 |
commit | 59dae79e5a199052c0a0a6726a8adbc94b6f3d51 (patch) | |
tree | c3e0446877f8ef77cefccbab21b020661a108c82 /libre/libretools/libretools.install | |
parent | 356694bab23ea8d4e55fa2badee08679e60c52d0 (diff) |
libretools-20110207-1
Diffstat (limited to 'libre/libretools/libretools.install')
-rw-r--r-- | libre/libretools/libretools.install | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/libre/libretools/libretools.install b/libre/libretools/libretools.install new file mode 100644 index 000000000..d2876ffba --- /dev/null +++ b/libre/libretools/libretools.install @@ -0,0 +1,33 @@ + +# arg 1: the new package version +post_install() { + cat <<EOF + +For using libremakepkg /etc/libretools.conf to fit your needs. + +For the scripts that can be run as normal user you can make +custom configuration by copying /etc/libretools.conf to +\$XDG_CONFIG_HOME/libretools/libretools.conf + +You should add this to your ~/.ssh/config file: + +# Parabola Host +Host parabola + Port 22 + HostName repo.parabolagnulinux.org + User parabolavnx + IdentityFile ~/.ssh/id_rsa +# End Parabola Host + +Edit IdentityFile as needed. + +EOF +} + +## arg 1: the new package version +## arg 2: the old package version +post_upgrade() { + post_install +} + +# vim:set ts=2 sw=2 et: |