aboutsummaryrefslogblamecommitdiffstats
path: root/featherweight/featherweight.install
blob: dff7792d6266456c504e95a00526e3dac9bf563d (plain) (tree)



















                                                                             
_file="featherweight"

infodir="usr/share/info"
file="${_file}.info"


post_install() {
  [[ -x "usr/bin/install-info" ]] || return 0
  install-info -- "${infodir}/${file}" "${infodir}/dir" 2> /dev/null
}

post_upgrade() {
  post_install "$1"
}

pre_remove() {
  [[ -x "usr/bin/install-info" ]] || return 0
  install-info --delete -- "${infodir}/${file}" "${infodir}/dir" 2> /dev/null
}