mirror of
https://git.FreeBSD.org/ports.git
synced 2025-02-03 11:12:13 +00:00
37efcf560e
- Changelog: http://tibleiz.net/asm-xml/ - Change MASTER_SITES to project's homepage. - DEFINE LICENSE & LICENSE_FILE. - Use MK_PROFILE=no instead of NO_PROFILE= in a Makefile used to build this piece of software on FreeBSD. - Take over MAINTAINER'ship. - Pet portlint. Reviewed by: krion Approved by: krion (mentor) Differential Revision: https://reviews.freebsd.org/D18379
30 lines
569 B
Makefile
30 lines
569 B
Makefile
# Created by: Sergey Skvortsov <skv@protey.ru>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= asm-xml
|
|
PORTVERSION= 1.4
|
|
CATEGORIES= textproc
|
|
MASTER_SITES= http://tibleiz.net/download/
|
|
|
|
MAINTAINER= 0mp@FreeBSD.org
|
|
COMMENT= Very fast XML parser and decoder written in pure assembler
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE.txt
|
|
|
|
ONLY_FOR_ARCHS= amd64 i386
|
|
|
|
BUILD_DEPENDS= fasm:lang/fasm
|
|
|
|
USES= dos2unix uidfix
|
|
|
|
PLIST_FILES= include/asm-xml.h lib/libasm-xml.a
|
|
|
|
post-extract:
|
|
${RM} -r ${WRKSRC}/obj
|
|
|
|
post-patch:
|
|
@${CP} ${FILESDIR}/Makefile ${WRKSRC}/Makefile
|
|
|
|
.include <bsd.port.mk>
|