summaryrefslogtreecommitdiffstats
path: root/abs/extra/graphviz/graphviz.install
diff options
context:
space:
mode:
authorMichael Hanson <hansonorders@verizon.net>2010-11-20 03:55:41 (GMT)
committerMichael Hanson <hansonorders@verizon.net>2010-11-20 03:55:41 (GMT)
commit3d521190982750f6b3d7bc58265a01b12789440f (patch)
tree337a1d8790a18a4066aec25860f3d6dc920232dc /abs/extra/graphviz/graphviz.install
parent3d3a3a9a4ce6b4d7b00514c9463b502e17f91d6e (diff)
downloadlinhes_pkgbuild-3d521190982750f6b3d7bc58265a01b12789440f.zip
linhes_pkgbuild-3d521190982750f6b3d7bc58265a01b12789440f.tar.gz
linhes_pkgbuild-3d521190982750f6b3d7bc58265a01b12789440f.tar.bz2
graphviz: initial import for ruby
Diffstat (limited to 'abs/extra/graphviz/graphviz.install')
-rw-r--r--abs/extra/graphviz/graphviz.install17
1 files changed, 17 insertions, 0 deletions
diff --git a/abs/extra/graphviz/graphviz.install b/abs/extra/graphviz/graphviz.install
new file mode 100644
index 0000000..00510e3
--- /dev/null
+++ b/abs/extra/graphviz/graphviz.install
@@ -0,0 +1,17 @@
+# arg 1: the new package version
+post_install() {
+ # Create plugin config /usr/lib/graphviz/config6
+ rm -f usr/lib/graphviz/config{,6}
+ usr/bin/dot -c
+}
+
+# arg 1: the new package version
+# arg 2: the old package version
+post_upgrade() {
+ post_install $1
+}
+
+# arg 1: the old package version
+pre_remove() {
+ rm -f usr/lib/graphviz/config{,6}
+}