mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: cityhash: Install citycrc.h.
* gnu/packages/textutils.scm (cityhash)[arguments]: Install citycrc.h. [version]: Use standardised format, increment to 1.1-2.
This commit is contained in:
parent
e86409c566
commit
a64a8c465d
1 changed files with 21 additions and 10 deletions
|
@ -1,7 +1,7 @@
|
|||
;;; GNU Guix --- Functional package management for GNU
|
||||
;;; Copyright © 2015 Taylan Ulrich Bayırlı/Kammer <taylanbayirli@gmail.com>
|
||||
;;; Copyright © 2015, 2016 Ricardo Wurmus <rekado@elephly.net>
|
||||
;;; Copyright © 2015 Ben Woodcroft <donttrustben@gmail.com>
|
||||
;;; Copyright © 2015, 2016 Ben Woodcroft <donttrustben@gmail.com>
|
||||
;;; Copyright © 2015 Roel Janssen <roel@gnu.org>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
|
@ -152,11 +152,10 @@ (define-public libgtextutils
|
|||
(license license:agpl3+)))
|
||||
|
||||
(define-public cityhash
|
||||
(let ((commit "8af9b8c")
|
||||
(revision "1"))
|
||||
(let ((commit "8af9b8c"))
|
||||
(package
|
||||
(name "cityhash")
|
||||
(version (string-append "1.1." revision "." commit))
|
||||
(version (string-append "1.1-2." commit))
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
|
@ -167,6 +166,18 @@ (define-public cityhash
|
|||
(base32
|
||||
"0n6skf5dv8yfl1ckax8dqhvsbslkwc9158zf2ims0xqdvzsahbi6"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
'(#:make-flags (list "CXXFLAGS=-g -O3")
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
;; citycrc is not installed by default but is used by some
|
||||
;; programs.
|
||||
(add-after 'install 'install-citycrc
|
||||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
(let* ((out (assoc-ref outputs "out"))
|
||||
(include (string-append out "/include")))
|
||||
(install-file "src/citycrc.h" include))
|
||||
#t)))))
|
||||
(home-page "https://github.com/google/cityhash")
|
||||
(synopsis "C++ hash functions for strings")
|
||||
(description
|
||||
|
|
Loading…
Reference in a new issue