freebsd-ports/sysutils/u-boot-tools/Makefile
Emmanuel Vadot fb1433b579 u-boot-tools: Update to 2019.01
Approved by:	bapt (mentor, implicit)
2019-02-04 18:26:34 +00:00

36 lines
968 B
Makefile

# Created by: Emmanuel Vadot <manu@freebsd.org>
# $FreeBSD$
PORTNAME= u-boot-tools
DISTVERSION= 2019.01
CATEGORIES= sysutils
MASTER_SITES= ftp://ftp.denx.de/pub/u-boot/
DISTNAME= u-boot-${PORTVERSION}
MAINTAINER= uboot@FreeBSD.org
COMMENT= U-boot related tools
LICENSE= GPLv2
USES= bison tar:bzip2 gmake python:2.7,build ssl
CONFLICTS= uboot-mkimage
ALL_TARGET= tools-only
MAKE_ARGS= ARCH=sandbox \
CC="${CC}" \
HOSTCC="${CC}" \
KBUILD_VERBOSE=1 \
NOSTDINC_FLAGS="" \
PLIST_FILES= bin/mkimage bin/mkenvimage bin/dumpimage bin/fit_info
do-configure:
(cd ${WRKSRC}/ && ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} sandbox_defconfig)
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/tools/dumpimage ${STAGEDIR}${PREFIX}/bin
${INSTALL_PROGRAM} ${WRKSRC}/tools/fit_info ${STAGEDIR}${PREFIX}/bin
${INSTALL_PROGRAM} ${WRKSRC}/tools/mkenvimage ${STAGEDIR}${PREFIX}/bin
${INSTALL_PROGRAM} ${WRKSRC}/tools/mkimage ${STAGEDIR}${PREFIX}/bin
.include <bsd.port.mk>