blob: d3ff22068e74689106ab7ccc52e4482823788a9f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
PORTNAME= autoconf
PORTVERSION= 20220527
CATEGORIES= devel
MASTER_SITES= # none
PKGNAMESUFFIX= -switch
DISTFILES= # none
MAINTAINER= tijl@FreeBSD.org
COMMENT= Wrapper script to switch between autoconf versions
LICENSE= BSD2CLAUSE
NO_ARCH= yes
NO_BUILD= yes
do-install:
${INSTALL_SCRIPT} ${FILESDIR}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin/
.for l in autoheader autom4te autoreconf autoscan autoupdate ifnames
${LN} ${STAGEDIR}${PREFIX}/bin/${PORTNAME} ${STAGEDIR}${PREFIX}/bin/${l}
.endfor
.include <bsd.port.mk>
|