blob: 8fdb6e090e625f183c1f1b3854792955419b2ec7 (
plain)
1
2
3
4
5
6
7
8
9
10
|
# $FreeBSD$
#
# MAINTAINER: portmgr@FreeBSD.org
actions: []
arguments: true
post-install-lua: <<EOD
for i=1, #arg do
assert(io.open(pkg.prefixed_path(arg[i]), "a"):close())
end
EOD
|