diff options
Diffstat (limited to 'ahotts.scm')
-rw-r--r-- | ahotts.scm | 13 |
1 files changed, 7 insertions, 6 deletions
@@ -1,5 +1,6 @@ (define-module (ahotts) #:use-module (guix packages) + #:use-module (guix gexp) #:use-module (guix git-download) #:use-module (guix build-system cmake) #:use-module ((guix licenses) #:prefix license:)) @@ -16,13 +17,13 @@ (commit version))) (sha256 - (base32 "0hs2cndra9il1xqs0ja0ccsw7mwbg1slvzzvh3cxy7npdnk5n9f5")))) + (base32 "1ml21yik9fcmv1ynz9spvhb03rxy606iz1iih7sci1cnczjvqjvb")))) (arguments - `(#:tests? #f ;; Doesn't have tests - #:phases - (modify-phases %standard-phases - (add-after 'unpack 'changedir - (lambda _ (chdir "libhtts")))))) + (list + #:tests? #f + #: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") |