82087d4b68
This is useful for downstream users to customize the packages. Reviewed by: emaste Differential Revision: https://reviews.freebsd.org/D26019
27 lines
551 B
Plaintext
27 lines
551 B
Plaintext
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
name = "%PKG_NAME_PREFIX%-%PKGNAME%"
|
|
origin = "base"
|
|
version = "%VERSION%"
|
|
comment = "%COMMENT%"
|
|
categories = [ base ]
|
|
maintainer = %PKG_MAINTAINER%
|
|
www = "%PKG_WWW%"
|
|
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
|
|
[ -x /usr/sbin/certctl ] && env DESTDIR=${PKG_ROOTDIR} \
|
|
/usr/sbin/certctl rehash
|
|
EOD
|
|
}
|