Changelog: - Added the ability to detect symbolic links in /dev to better view mounted EFI partitions. https://github.com/Emrion/uploaders/releases/tag/1.2.2 While here fix warning from portclippy. PR: 290845
31 lines
642 B
Makefile
31 lines
642 B
Makefile
PORTNAME= loaders-update
|
|
DISTVERSION= 1.2.2
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= GH
|
|
|
|
MAINTAINER= kmachine@free.fr
|
|
COMMENT= Update bootcodes and loaders
|
|
WWW= https://github.com/emrion/uploaders/
|
|
|
|
LICENSE= BSD2CLAUSE
|
|
|
|
ONLY_FOR_ARCHS= amd64
|
|
ONLY_FOR_ARCHS_REASON= Utility is specific to amd64's boot code
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= emrion
|
|
GH_PROJECT= uploaders
|
|
|
|
NO_BUILD= yes
|
|
|
|
PLIST_FILES= sbin/${PORTNAME} \
|
|
share/man/man8/${PORTNAME}.8.gz
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME} \
|
|
${STAGEDIR}${PREFIX}/sbin/${PORTNAME}
|
|
${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.8 \
|
|
${STAGEDIR}${PREFIX}/share/man/man8/
|
|
|
|
.include <bsd.port.mk>
|