mirror of
https://git.FreeBSD.org/ports.git
synced 2025-02-03 11:12:13 +00:00
62d98f2dd1
With minor cleanups to make things simpler. With hat: portmgr Sponsored by: Absolight
30 lines
696 B
Makefile
30 lines
696 B
Makefile
# Created by: wcarey
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= ledger
|
|
PORTVERSION= 3.1
|
|
DISTVERSIONPREFIX= v
|
|
CATEGORIES= finance
|
|
|
|
MAINTAINER= woodycarey@hotmail.com
|
|
COMMENT= John Wiegley's command line accounting program
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/doc/LICENSE
|
|
|
|
BUILD_DEPENDS= ${LOCALBASE}/include/utf8.h:${PORTSDIR}/devel/utf8cpp
|
|
LIB_DEPENDS= libgmp.so:${PORTSDIR}/math/gmp \
|
|
libmpfr.so:${PORTSDIR}/math/mpfr \
|
|
libedit.so.0:${PORTSDIR}/devel/libedit \
|
|
libboost_system.so:${PORTSDIR}/devel/boost-libs
|
|
|
|
USE_GITHUB= yes
|
|
|
|
USE_LDCONFIG= yes
|
|
USES= cmake compiler:c++11-lib
|
|
|
|
CMAKE_ARGS+= -DCMAKE_INSTALL_MANDIR=${MANPREFIX}/man \
|
|
-DCMAKE_INCLUDE_PATH=${LOCALBASE}/include
|
|
|
|
.include <bsd.port.mk>
|