diff options
author | dmcmahill <dmcmahill@pkgsrc.org> | 2001-11-15 03:10:45 +0000 |
---|---|---|
committer | dmcmahill <dmcmahill@pkgsrc.org> | 2001-11-15 03:10:45 +0000 |
commit | 69c199540d41aa6c828402e57fb3d39d2ad3e64d (patch) | |
tree | 6e090270befc1c0f47c1bb66664de3d73662c594 /cad/mcalc/Makefile | |
parent | 868355cf4d39fa6dfdafb0a0fe94593cc604aad1 (diff) | |
download | pkgsrc-69c199540d41aa6c828402e57fb3d39d2ad3e64d.tar.gz |
initial import of mcalc.
Mcalc is a JavaScript based calculator for accurate microstrip
transmission line analysis and synthesis.
The electrical parameters may be determined from specified physical
parameters, or the physical parameters required to meet a given set of
electrical parameters may be found.
Much attention has been given to making mcalc the most accurate online
based calculator short of a full electromagnetic simulation.
Diffstat (limited to 'cad/mcalc/Makefile')
-rw-r--r-- | cad/mcalc/Makefile | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/cad/mcalc/Makefile b/cad/mcalc/Makefile new file mode 100644 index 00000000000..59ffc0eee98 --- /dev/null +++ b/cad/mcalc/Makefile @@ -0,0 +1,23 @@ +# $NetBSD: Makefile,v 1.1.1.1 2001/11/15 03:10:45 dmcmahill Exp $ +# + +DISTNAME= mcalc-1.4 +CATEGORIES= cad +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=mcalc/} + +MAINTAINER= dmcmahill@netbsd.org +HOMEPAGE= http://mcalc.sourceforge.net +COMMENT= JavaScript based microstrip analysis/synthesis calculator + +NO_BUILD= yes + +MCALCBASE?= share/${PKGNAME} + +PLIST_SUBST+= MCALCBASE=${MCALCBASE} +MESSAGE_SUBST+= MCALCBASE=${MCALCBASE} + +do-install: + ${INSTALL_DATA_DIR} ${PREFIX}/${MCALCBASE} + ${INSTALL_DATA} ${WRKSRC}/* ${PREFIX}/${MCALCBASE}/ + +.include "../../mk/bsd.pkg.mk" |