2020-01-29 18:47:08 +00:00
|
|
|
#
|
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
|
2020-08-11 08:42:24 +00:00
|
|
|
name = "%PKG_NAME_PREFIX%-%PKGNAME%"
|
2020-01-29 18:47:08 +00:00
|
|
|
origin = "base"
|
|
|
|
version = "%VERSION%"
|
|
|
|
comment = "%COMMENT%"
|
|
|
|
categories = [ base ]
|
2020-08-11 08:42:24 +00:00
|
|
|
maintainer = %PKG_MAINTAINER%
|
|
|
|
www = "%PKG_WWW%"
|
2020-01-29 18:47:08 +00:00
|
|
|
prefix = "/"
|
|
|
|
licenselogic = "single"
|
|
|
|
licenses = [ BSD2CLAUSE ]
|
|
|
|
desc = <<EOD
|
|
|
|
%DESC%
|
|
|
|
EOD
|
|
|
|
scripts: {
|
|
|
|
# XXX If pkg picks up a mechanism to detect in the post-install script
|
|
|
|
# files being added or removed, we should use it instead to gate the
|
|
|
|
# rehash.
|
|
|
|
post-install = <<EOD
|
2020-02-19 02:35:43 +00:00
|
|
|
[ -x /usr/sbin/certctl ] && env DESTDIR=${PKG_ROOTDIR} \
|
|
|
|
/usr/sbin/certctl rehash
|
2020-01-29 18:47:08 +00:00
|
|
|
EOD
|
|
|
|
}
|