blob: 3aa0ac839df2b7fbaf9d752fbe278d9baff664f3 (
plain) (
blame)
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
34
|
# New ports collection makefile for: tavrasm
# Date created: 12 December 2003
# Whom: Wes Peters <wes@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= avra
PORTVERSION= 1.2.1
PORTREVISION= 1
DISTVERSIONSUFFIX= -src
CATEGORIES= devel
MASTER_SITES= SF
MAINTAINER= wes@FreeBSD.org
COMMENT= Macro Assembler for Atmel AVR microcontrollers
WRKSRC= ${WRKDIR}
USE_AUTOTOOLS= aclocal:110 autoconf:267 automake:110
AUTOMAKE_ARGS= -a
PORTDOCS= README
# Install the Avra README file as docs
post-install:
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
.for i in ${PORTDOCS}
${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR}
.endfor
.endif
.include <bsd.port.mk>
|