summarylogtreecommitdiffstats
path: root/pdfcropmargins.install
blob: 96a7960c83dcb30340df8770c2577dd917f4b0f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
post_install() {
  echo "To run pdfcropmargins in GUI mode :"
  echo "pdf-crop-margins -gui <file.pdf>"
  echo " "
  echo "To run pdfcropmargins in CLI mode :"
  echo "pdf-crop-margins <file.pdf>"
  echo " "
  echo "Read the doc :"
  echo "pdf-crop-margins --help"
  echo " "
}

post_upgrade() {
  post_install
}

post_remove() {
  post_install
}

# vim:set ts=2 sw=2 et: