diff options
Diffstat (limited to 'community/dmd/dmd.install')
-rw-r--r-- | community/dmd/dmd.install | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/community/dmd/dmd.install b/community/dmd/dmd.install new file mode 100644 index 000000000..62f98d07d --- /dev/null +++ b/community/dmd/dmd.install @@ -0,0 +1,21 @@ +pre_install() { + /bin/true +} +post_install() { + echo '==> Note: dmd does not come with a runtime library!' + echo '==> The D language has two competing, incompatible standard libraries.' + echo '==> In order for dmd to be useful, you must' + echo '==> install either libphobos or libtango, whichever you prefer.' +} +pre_upgrade() { + /bin/true +} +post_upgrade() { + /bin/true +} +pre_remove() { + /bin/true +} +post_remove() { + /bin/true +} |