5d33e04596
Where appropriate fiddle with a few other things.
11 lines
210 B
Plaintext
11 lines
210 B
Plaintext
# MAINTAINER: portmgr@FreeBSD.org
|
|
|
|
actions: []
|
|
post-deinstall-lua: <<EOD
|
|
file = pkg.prefixed_path("%@")
|
|
local st = pkg.stat(file)
|
|
if st and st.type == "reg" and st.size == 0 then
|
|
os.remove(file)
|
|
end
|
|
EOD
|