annotate graphics/graphviz/graphviz-post.sh @ 1341:9f35c15329d1 default tip @

dev/meson: downgrade to 0.59.4 due to many regression
author David Demelier <markand@malikania.fr>
date Wed, 22 Dec 2021 21:52:57 +0100
parents 9867e578b1a9
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1217
27d1a83dc8d6 misc: change shebang to /bin/sh
David Demelier <markand@malikania.fr>
parents: 1019
diff changeset
1 #!/bin/sh
826
1a533ac300c3 graphics/graphviz: fix dot with post install script
David Demelier <markand@malikania.fr>
parents:
diff changeset
2 #
1288
9867e578b1a9 misc: update copyright years
David Demelier <markand@malikania.fr>
parents: 1217
diff changeset
3 # Copyright (c) 2019-2021 David Demelier <markand@malikania.fr>
826
1a533ac300c3 graphics/graphviz: fix dot with post install script
David Demelier <markand@malikania.fr>
parents:
diff changeset
4 #
1a533ac300c3 graphics/graphviz: fix dot with post install script
David Demelier <markand@malikania.fr>
parents:
diff changeset
5 # Permission to use, copy, modify, and/or distribute this software for any
1a533ac300c3 graphics/graphviz: fix dot with post install script
David Demelier <markand@malikania.fr>
parents:
diff changeset
6 # purpose with or without fee is hereby granted, provided that the above
1a533ac300c3 graphics/graphviz: fix dot with post install script
David Demelier <markand@malikania.fr>
parents:
diff changeset
7 # copyright notice and this permission notice appear in all copies.
1a533ac300c3 graphics/graphviz: fix dot with post install script
David Demelier <markand@malikania.fr>
parents:
diff changeset
8 #
1a533ac300c3 graphics/graphviz: fix dot with post install script
David Demelier <markand@malikania.fr>
parents:
diff changeset
9 # THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
1a533ac300c3 graphics/graphviz: fix dot with post install script
David Demelier <markand@malikania.fr>
parents:
diff changeset
10 # WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
1a533ac300c3 graphics/graphviz: fix dot with post install script
David Demelier <markand@malikania.fr>
parents:
diff changeset
11 # MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
1a533ac300c3 graphics/graphviz: fix dot with post install script
David Demelier <markand@malikania.fr>
parents:
diff changeset
12 # ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
1a533ac300c3 graphics/graphviz: fix dot with post install script
David Demelier <markand@malikania.fr>
parents:
diff changeset
13 # WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
1a533ac300c3 graphics/graphviz: fix dot with post install script
David Demelier <markand@malikania.fr>
parents:
diff changeset
14 # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
1a533ac300c3 graphics/graphviz: fix dot with post install script
David Demelier <markand@malikania.fr>
parents:
diff changeset
15 # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1a533ac300c3 graphics/graphviz: fix dot with post install script
David Demelier <markand@malikania.fr>
parents:
diff changeset
16 #
1a533ac300c3 graphics/graphviz: fix dot with post install script
David Demelier <markand@malikania.fr>
parents:
diff changeset
17
1a533ac300c3 graphics/graphviz: fix dot with post install script
David Demelier <markand@malikania.fr>
parents:
diff changeset
18 case "$1" in
1a533ac300c3 graphics/graphviz: fix dot with post install script
David Demelier <markand@malikania.fr>
parents:
diff changeset
19 "post-install")
1a533ac300c3 graphics/graphviz: fix dot with post install script
David Demelier <markand@malikania.fr>
parents:
diff changeset
20 rm -f /lib/graphviz/config*
1a533ac300c3 graphics/graphviz: fix dot with post install script
David Demelier <markand@malikania.fr>
parents:
diff changeset
21 /bin/dot -c
1a533ac300c3 graphics/graphviz: fix dot with post install script
David Demelier <markand@malikania.fr>
parents:
diff changeset
22 ;;
1a533ac300c3 graphics/graphviz: fix dot with post install script
David Demelier <markand@malikania.fr>
parents:
diff changeset
23 "post-uninstall")
1a533ac300c3 graphics/graphviz: fix dot with post install script
David Demelier <markand@malikania.fr>
parents:
diff changeset
24 rm -f /lib/graphviz/config*
1a533ac300c3 graphics/graphviz: fix dot with post install script
David Demelier <markand@malikania.fr>
parents:
diff changeset
25 ;;
1a533ac300c3 graphics/graphviz: fix dot with post install script
David Demelier <markand@malikania.fr>
parents:
diff changeset
26 esac