diff options
author | Márcio Alexandre Silva Delgado <coadde@lavabit.com> | 2013-06-05 21:44:10 -0300 |
---|---|---|
committer | Márcio Alexandre Silva Delgado <coadde@lavabit.com> | 2013-06-05 21:44:10 -0300 |
commit | 3baa19e8b60debf3fb36581045e913c12c5c1469 (patch) | |
tree | f6af56f26278904b814c637eb84225ee64ff7bba /libre/libretools-legacy/libretools-legacy.install | |
parent | 54021ec4957bcf9a7b2537cd7bf2d73f31303ebe (diff) |
libre/{devtools,libretools}-legacy: add pkg to libre repo
Diffstat (limited to 'libre/libretools-legacy/libretools-legacy.install')
-rw-r--r-- | libre/libretools-legacy/libretools-legacy.install | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/libre/libretools-legacy/libretools-legacy.install b/libre/libretools-legacy/libretools-legacy.install new file mode 100644 index 000000000..3ede1f904 --- /dev/null +++ b/libre/libretools-legacy/libretools-legacy.install @@ -0,0 +1,28 @@ +#!/bin/sh + +# arg 1: the new package version +post_install() { + cat <<EOF +Please check https://wiki.parabolagnulinux.org/Package_maintainer_guide +and follow instructions there before using libretools. + +If you plan using fullpkg you should read https://wiki.parabolagnulinux.org/fullpkg +and install libretools-\$arch if avaliable + +EOF + update-cleansystem +} + +## arg 1: the new package version +## arg 2: the old package version +post_upgrade() { + cat <<EOF +Check your /etc/libretools.conf, it has changed substantially. + +If using fullpkg, you should install libretools-\$arch if avaliable + +EOF + update-cleansystem +} + +# vim:set ts=2 sw=2 et: |