1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-03 06:04:53 +00:00
freebsd-ports/finance/expense/Makefile
Alexey Dokuchaev 951bb0c949 finance/expense: replace previous naive build "fix" with a real one
Comparator functions must return NSComparisonResult, not an integer.

Fixes:	944d53ea8c
2023-09-04 16:35:24 +00:00

29 lines
641 B
Makefile

PORTNAME= expense
PORTVERSION= 0.1
PORTREVISION= 12
CATEGORIES= finance gnustep
MASTER_SITES= http://www.eskimo.com/~pburns/Expense/files/
DISTNAME= Expense-${PORTVERSION}
MAINTAINER= ports@FreeBSD.org
COMMENT= Application to track your expense under GNUstep
WWW= https://www.eskimo.com/~pburns/Expense/
LICENSE= GPLv2
USES= gnustep
USE_GNUSTEP= back build
WRKSRC= ${WRKDIR}/Expense
PORTSCOUT= ignore:1
post-install:
${STRIP_CMD} ${STAGEDIR}${PREFIX}/GNUstep/System/Applications/Expense.app/Expense
post-patch:
@${REINPLACE_CMD} -e '/_recordSort/s,^int,NSComparisonResult,' \
${WRKSRC}/LedgerModel.[hm]
.include <bsd.port.mk>