758d912e33
"extract" script for extraction. Many cases where a custom EXTRACT_CMD simply copied the distfile into the work directory are no longer needed. The extract script also hides differences between pax and tar behind a common command-line interface, so we no longer need code that's conditional on whether EXTRACT_USING is tar or pax.
27 lines
760 B
Makefile
27 lines
760 B
Makefile
# $NetBSD: Makefile,v 1.10 2006/01/21 18:57:42 jlam Exp $
|
|
#
|
|
|
|
DISTNAME= fix4SA110rev2-1.0
|
|
PKGREVISION= 1
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= ftp://ftp.NetBSD.org/pub/NetBSD/arch/arm32/misc/
|
|
DISTFILES= fix4SA110rev2.c fix4SA110rev2.README
|
|
|
|
MAINTAINER= abs@NetBSD.org
|
|
HOMEPAGE= ftp://ftp.NetBSD.org/pub/NetBSD/arch/arm32/misc/fix4SA110rev2.README
|
|
COMMENT= Modify arm32 binaries to work around SA rev2 problems
|
|
|
|
ONLY_FOR_PLATFORM= NetBSD-*-arm NetBSD-*-arm32
|
|
|
|
WRKSRC= ${WRKDIR}
|
|
|
|
INSTALLATION_DIRS= bin share/doc
|
|
|
|
do-build:
|
|
${CC} ${CFLAGS} -o ${WRKSRC}/fix4SA110rev2 ${WRKSRC}/fix4SA110rev2.c
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/fix4SA110rev2 ${PREFIX}/bin
|
|
${INSTALL_DATA} ${WRKSRC}/fix4SA110rev2.README ${PREFIX}/share/doc
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|