forked from spack/spack
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
new mosesdecoder package (spack#36252)
* new mosesdecoder package * [@spackbot] updating style on behalf of Sangu-Mbekelu --------- Co-authored-by: Sangu Mbekelu <s.mbekelu9@gmail.com>
- Loading branch information
1 parent
b7505aa
commit 8d8a008
Showing
1 changed file
with
26 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# Copyright 2013-2023 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.package import * | ||
|
||
|
||
class Mosesdecoder(Package): | ||
"""An implementation of the statistical approach to machine translation""" | ||
|
||
homepage = "http://www2.statmt.org/moses/" | ||
url = "https://github.com/moses-smt/mosesdecoder/archive/refs/tags/RELEASE-4.0.tar.gz" | ||
|
||
version("4.0", sha256="357376cdbb225a17cdf17195625d0fa7e10d722807e9e0b8a633ffbd7eec9b8f") | ||
|
||
depends_on("git") | ||
depends_on("subversion") | ||
depends_on("cmake") | ||
depends_on("libtool") | ||
depends_on("tcl") | ||
depends_on("gcc") | ||
depends_on("boost") | ||
depends_on("zlib") | ||
depends_on("python") |