Add new package: setserial (#18929)

This commit is contained in:
darmac 2020-09-25 00:38:05 +08:00 committed by GitHub
parent cf4e468ed2
commit 65ea663fd4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,20 @@
# Copyright 2013-2020 Lawrence Livermore National Security, LLC and other
# Spack Project Developers. See the top-level COPYRIGHT file for details.
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
from spack import *
class Setserial(AutotoolsPackage):
"""A utility for configuring serial ports."""
homepage = "https://setserial.sourceforge.net"
url = "https://udomain.dl.sourceforge.net/project/setserial/setserial/2.17/setserial-2.17.tar.gz"
version('2.17', sha256='7e4487d320ac31558563424189435d396ddf77953bb23111a17a3d1487b5794a')
def install(self, spec, prefix):
mkdirp(prefix.bin)
mkdirp(prefix.usr.man.man8)
make('install', 'DESTDIR={0}'.format(prefix))