80b9a9e08e
GBase is a GTK program designed to convert between the four common bases used in programming (decimal, hexadecimal, octal and binary). It converts numbers on-the-fly as they are typed in. It can also convert numbers entered on the command line. It can correctly handle both signed and unsigned 32-bit integers.
22 lines
536 B
Makefile
22 lines
536 B
Makefile
# $NetBSD: Makefile,v 1.1 2013/04/17 01:19:03 rodent Exp $
|
|
|
|
DISTNAME= gbase-0.5
|
|
CATEGORIES= converters math
|
|
MASTER_SITES= http://www.fluxcode.net/
|
|
|
|
MAINTAINER= rodent@NetBSD.org
|
|
HOMEPAGE= http://fluxcode.net/projects/gbase-2
|
|
COMMENT= GTK program designed to convert between the four common bases
|
|
LICENSE= artistic
|
|
|
|
USE_TOOLS+= pkg-config
|
|
|
|
INSTALLATION_DIRS+= bin
|
|
|
|
BUILD_TARGET= gbase
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/gbase ${DESTDIR}${PREFIX}/bin/gbase
|
|
|
|
.include "../../x11/gtk2/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|