developer is officially maintaining the package. The rationale for changing this from "tech-pkg" to "pkgsrc-users" is that it implies that any user can try to maintain the package (by submitting patches to the mailing list). Since the folks most likely to care about the package are the folks that want to use it or are already using it, this would leverage the energy of users who aren't developers.
30 lines
845 B
Makefile
30 lines
845 B
Makefile
# $NetBSD: Makefile,v 1.10 2006/03/04 21:29:12 jlam Exp $
|
|
#
|
|
|
|
DISTNAME= ald-0.0.19d
|
|
PKGNAME= ald-0.0.19
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://ellipse.mcs.drexel.edu/source/
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://ellipse.mcs.drexel.edu/ald.html
|
|
COMMENT= Very nice x86 assembly-level debugger ported to NetBSD
|
|
|
|
ONLY_FOR_PLATFORM= NetBSD-1.5*-i386 NetBSD-1.6*-i386 NetBSD-[2-9]*-i386
|
|
|
|
WRKSRC= ${WRKDIR}/${PKGNAME_NOREV}
|
|
GNU_CONFIGURE= YES
|
|
|
|
INSTALLATION_DIRS= bin man/man8
|
|
|
|
#do-build:
|
|
# cd ${WRKSRC} && ${MAKE_PROGRAM} -f ${MAKEFILE} ${BUILD_TARGET}
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/bin/ald ${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/doc/ald.8 ${PREFIX}/man/man8
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/ald
|
|
cd ${WRKSRC} && ${INSTALL_DATA} INSTALL README ChangeLog \
|
|
${PREFIX}/share/doc/ald
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|