mirror of
https://git.freebsd.org/ports.git
synced 2025-06-04 04:16:27 -04:00
Desktop-installer has been stable for some time now, so it's time to commit to a stable UI for a while. No major UI changes until v2.0. This release contains a few minor fixes and enhancements since 0.8.3.
31 lines
882 B
Makefile
31 lines
882 B
Makefile
PORTNAME= desktop-installer
|
|
DISTVERSION= 1.0.0
|
|
CATEGORIES= sysutils
|
|
|
|
MAINTAINER= jwb@FreeBSD.org
|
|
COMMENT= Quickly configure a FreeBSD desktop system
|
|
WWW= https://github.com/outpaddling/desktop-installer
|
|
|
|
LICENSE= BSD2CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
RUN_DEPENDS= auto-admin>=0.8.0.25:sysutils/auto-admin
|
|
|
|
USES= desktop-file-utils tar:xz
|
|
USE_GITHUB= yes
|
|
|
|
GH_ACCOUNT= outpaddling
|
|
|
|
NO_BUILD= yes
|
|
NO_ARCH= yes
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/FreeBSD/${PORTNAME} ${STAGEDIR}${PREFIX}/sbin
|
|
${INSTALL_SCRIPT} ${WRKSRC}/Scripts/battery-shutdown.sh ${STAGEDIR}${PREFIX}/sbin
|
|
${INSTALL_MAN} ${WRKSRC}/FreeBSD/${PORTNAME}.man \
|
|
${STAGEDIR}${PREFIX}/share/man/man1/${PORTNAME}.1
|
|
@${MKDIR} ${STAGEDIR}${DATADIR}
|
|
cd ${WRKSRC}/Common && ${COPYTREE_SHARE} . ${STAGEDIR}${DATADIR}
|
|
cd ${WRKSRC}/FreeBSD && ${COPYTREE_SHARE} XDM ${STAGEDIR}${DATADIR}
|
|
|
|
.include <bsd.port.mk>
|