blob: 22420aba3955e2d2911747767181658860cb00c4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#!/bin/false
# vim: set ft=sh ts=4 sw=4 et:
. /usr/share/makepkg/util/message.sh
_notify_agpl_build() {
msg "[coder] NOTE: This package ships the AGPLv3-licensed version of coder."
msg "[coder] It does not include enterprise features. If you are using coder"
msg "[coder] in an enterprise setting and are encountering missing features,"
msg "[coder] please rebuild the package with license=('Proprietary') or use"
msg "[coder] the coder-bin package instead."
}
post_install() {
_notify_agpl_build
}
post_upgrade() {
_notify_agpl_build
}
|