blob: f4a1429e416b373dd937752b3ed9d1d8606fa4b4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
(define-module (ahotts)
#:use-module (guix packages)
#:use-module (guix gexp)
#:use-module (guix git-download)
#:use-module (guix build utils)
#:use-module (guix build-system cmake)
#:use-module ((guix licenses) #:prefix license:))
; https://github.com/aholab/AhoTTS.git
(define-public ahotts
(package
(name "ahotts")
(version "0.0.1")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/ekaitz-zarraga/AhoTTS")
(commit version)))
(sha256
(base32 "1mgwllpk8is81xs6sm67ri1scnx9fm2h4y5nv2pzk6h3r1j8kx51"))))
(arguments
`(#:tests? #f
#:phases (modify-phases %standard-phases (delete 'strip))
#:configure-flags
,#~(list (string-append "-DCMAKE_INSTALL_DATADIR=" #$output "/share")
(string-append "-DCMAKE_INSTALL_INCLUDEDIR=" #$output "/include"))))
(build-system cmake-build-system)
(home-page "https://github.com/aholab/AhoTTS")
(synopsis "TTS for Basque and Spanish")
(description "Text-to-Speech conversor for Basque and Spanish. It includes
linguistic processing and built voices for the languages aforementioned. Its
acoustic engine is based on hts_engine and it uses a high quality vocoder
called AhoCoder. Developed by Aholab Signal Processing Laboratory at the
Bilbao School of Engineering (University of the Basque Country)")
(license license:gpl3))) ; GPL3.0 the code but the extra data is cc-by
|