diff options
author | Ricardo Wurmus <ricardo.wurmus@mdc-berlin.de> | 2015-11-30 14:31:02 +0100 |
---|---|---|
committer | Ricardo Wurmus <ricardo.wurmus@mdc-berlin.de> | 2016-01-04 11:35:57 +0100 |
commit | f1e3a8aed24b0e9475bbae5730cee11c3f541f0b (patch) | |
tree | 45b26582264f164c576987a811bacf36f4f15ada /gnu/packages/textutils.scm | |
parent | 77553dff86afea7042e38a7806a9c89a1b8b3ae5 (diff) | |
download | patches-f1e3a8aed24b0e9475bbae5730cee11c3f541f0b.tar patches-f1e3a8aed24b0e9475bbae5730cee11c3f541f0b.tar.gz |
gnu: utf8proc: Update to 1.3.1.
* gnu/packages/textutils.scm (utf8proc): Update to 1.3.1.
[arguments]: Remove custom "install" phase.
Diffstat (limited to 'gnu/packages/textutils.scm')
-rw-r--r-- | gnu/packages/textutils.scm | 20 |
1 files changed, 6 insertions, 14 deletions
diff --git a/gnu/packages/textutils.scm b/gnu/packages/textutils.scm index 537a840247..f929023094 100644 --- a/gnu/packages/textutils.scm +++ b/gnu/packages/textutils.scm @@ -95,7 +95,7 @@ libenca and several charset conversion libraries and tools.") (define-public utf8proc (package (name "utf8proc") - (version "1.1.6") + (version "1.3.1") (source (origin (method url-fetch) @@ -104,23 +104,15 @@ libenca and several charset conversion libraries and tools.") version ".tar.gz")) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "0wmsi672knii0q70wh6a3ll0gv7qk33c50zbpzasrs3b16bqy659")))) + (base32 "1k48as5kjkar4yj3dwxyll8ykj4k723ib5a6mnw1g86q3zi0zdl3")))) (build-system gnu-build-system) (arguments '(#:tests? #f ;no "check" target - #:make-flags '("CC=gcc") + #:make-flags (list "CC=gcc" + (string-append "prefix=" (assoc-ref %outputs "out"))) #:phases - (alist-replace - 'install - (lambda* (#:key outputs #:allow-other-keys) - (let ((lib (string-append (assoc-ref outputs "out") "/lib/")) - (include (string-append (assoc-ref outputs "out") "/include/"))) - (install-file "utf8proc.h" include) - (for-each (lambda (file) - (install-file file lib)) - '("libutf8proc.a" "libutf8proc.so")))) - ;; no configure script - (alist-delete 'configure %standard-phases)))) + (modify-phases %standard-phases + (delete 'configure)))) (home-page "http://julialang.org/utf8proc/") (synopsis "C library for processing UTF-8 Unicode data") (description "utf8proc is a small C library that provides Unicode |