deb.postinst.ftl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle-ospackage-plugin Show documentation
Show all versions of gradle-ospackage-plugin Show documentation
Provides a task similar to Tar and Zip for constructing RPM and DEB package files.
The newest version!
#!/bin/sh -e
ec() {
echo "\$@" >&2
"\$@"
}
case "\$1" in
configure)
<% dirs.each{ dir -> %>
ec <%= dir['install'] %>
<% } %>
<% commands.each {command -> %>
<%= command %>
<% } %>
;;
esac