blob: 528d67afc4b2f459849df24fa755db933c116557 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
# $NetBSD: Makefile,v 1.1.1.1 2007/11/29 10:11:13 bjs Exp $
#
DISTNAME= cvsdiff2patch-1.0.1
CATEGORIES= devel
MASTER_SITES= # empty
DISTFILES= # empty
MAINTAINER= bjs@NetBSD.org
HOMEPAGE= http://people.freebsd.org/~alfred/sources/cvsdiff2patch/
COMMENT= Convert CVS diffs into something that patch(1) understands
PKG_DESTDIR_SUPPORT= user-destdir
NO_CHECKSUM= yes
NO_CONFIGURE= yes
USE_LIBTOOL= yes
INSTALLATION_DIRS+= bin
do-extract:
${RUN} ${CP} -R ${FILESDIR} ${WRKSRC}
do-build:
${RUN} cd ${WRKSRC} && \
${LIBTOOL} --mode=link ${CC} -o ${PKGBASE} ${PKGBASE}.c
do-install:
${RUN} cd ${WRKSRC} && \
${LIBTOOL} --mode=install ${INSTALL_PROGRAM} ${PKGBASE} \
${DESTDIR}${PREFIX}/bin
.include "../../mk/bsd.pkg.mk"
|