summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeoffrey Oxberry <goxberry@gmail.com>2018-01-31 04:42:41 -0800
committerMassimiliano Culpo <massimiliano.culpo@gmail.com>2018-01-31 13:42:41 +0100
commit148a2f0238effb7ab81d28d2136d6a6bb8a0b12c (patch)
tree60f92277709f6e5392a9e70927443a2db226d3b6
parentae589c22f297bf64f1417277c71d600a11222584 (diff)
downloadspack-148a2f0238effb7ab81d28d2136d6a6bb8a0b12c.tar.gz
spack-148a2f0238effb7ab81d28d2136d6a6bb8a0b12c.tar.bz2
spack-148a2f0238effb7ab81d28d2136d6a6bb8a0b12c.tar.xz
spack-148a2f0238effb7ab81d28d2136d6a6bb8a0b12c.zip
bmake@20171207: new package (#7099)
-rw-r--r--var/spack/repos/builtin/packages/bmake/package.py51
1 files changed, 51 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/bmake/package.py b/var/spack/repos/builtin/packages/bmake/package.py
new file mode 100644
index 0000000000..55afa005b1
--- /dev/null
+++ b/var/spack/repos/builtin/packages/bmake/package.py
@@ -0,0 +1,51 @@
+##############################################################################
+# Copyright (c) 2013-2017, Lawrence Livermore National Security, LLC.
+# Produced at the Lawrence Livermore National Laboratory.
+#
+# This file is part of Spack.
+# Created by Todd Gamblin, tgamblin@llnl.gov, All rights reserved.
+# LLNL-CODE-647188
+#
+# For details, see https://github.com/spack/spack
+# Please also see the NOTICE and LICENSE files for our notice and the LGPL.
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU Lesser General Public License (as
+# published by the Free Software Foundation) version 2.1, February 1999.
+#
+# This program is distributed in the hope that it will be useful, but
+# WITHOUT ANY WARRANTY; without even the IMPLIED WARRANTY OF
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the terms and
+# conditions of the GNU Lesser General Public License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public
+# License along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+##############################################################################
+from spack import *
+import re
+
+
+class Bmake(Package):
+ """bmake: portable BSD make
+
+ bmake is the BSD make(1) utility ported to several non-BSD
+ systems. It supports GNU's autoconf."""
+
+ homepage = "http://www.crufty.net/FreeWare/"
+ url = "ftp://ftp.netbsd.org/pub/NetBSD/misc/sjg/bmake-20171207.tar.gz"
+
+ version('20171207', '5d7f2f85f16c4a6ba34ceea68957447f')
+
+ def install(self, spec, prefix):
+ # Do not pre-roff cat pages
+ mk_file = FileFilter('mk/man.mk')
+ mk_file.filter(re.escape(r'MANTARGET?'), 'MANTARGET')
+
+ # -DWITHOUT_PROG_LINK does not symlink bmake as
+ # -"bmake-VERSION"
+ sh = which('sh')
+ sh('boot-strap', '--prefix={0}'.format(prefix),
+ '-DWITHOUT_PROG_LINK', '--install')
+ mkdirp(prefix.man1)
+ install('bmake.1', join_path(prefix.man1, 'bmake.1'))