mirror of
https://github.com/outbackdingo/ports.git
synced 2026-01-28 02:20:05 +00:00
12 lines
187 B
Plaintext
12 lines
187 B
Plaintext
post_install() {
|
|
[ -f /etc/scratchpkg.conf ] || cp /etc/scratchpkg.conf.orig /etc/scratchpkg.conf
|
|
}
|
|
|
|
post_upgrade() {
|
|
post_install
|
|
}
|
|
|
|
post_remove() {
|
|
rm /etc/scratchpkg.conf || true
|
|
}
|