summarylogtreecommitdiffstats
path: root/tex2im.install
blob: 45839968d40230fc586b6261bb671585b38b40ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
post_install() {
    echo "################################################################################"
    echo "Be sure to modify /etc/ImageMagick-7/policy.xml to allow for ImageMagick to work"
    echo "with PDFs and PNGs if you haven't already, i.e.:"
    echo "  <policymap>"
    echo "    <!-- <policy domain=\"delegate\" rights=\"none\" pattern=\"gs\" /> -->"
    echo "    <policy domain=\"coder\" rights=\"read|write\" pattern=\"{PNG,PDF}\" />"
    echo "  </policymap>"
    echo "See https://wiki.archlinux.org/index.php/ImageMagick"
    echo "################################################################################"
}

post_upgrade() {
    post_install
}