Update license headers.
[jackhill/guix/guix.git] / distro / packages / libffi.scm
1 ;;; GNU Guix --- Functional package management for GNU
2 ;;; Copyright © 2012 Ludovic Courtès <ludo@gnu.org>
3 ;;;
4 ;;; This file is part of GNU Guix.
5 ;;;
6 ;;; GNU Guix is free software; you can redistribute it and/or modify it
7 ;;; under the terms of the GNU General Public License as published by
8 ;;; the Free Software Foundation; either version 3 of the License, or (at
9 ;;; your option) any later version.
10 ;;;
11 ;;; GNU Guix is distributed in the hope that it will be useful, but
12 ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
13 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 ;;; GNU General Public License for more details.
15 ;;;
16 ;;; You should have received a copy of the GNU General Public License
17 ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
18
19 (define-module (distro packages libffi)
20 #:use-module (guix licenses)
21 #:use-module (guix packages)
22 #:use-module (guix download)
23 #:use-module (guix utils)
24 #:use-module (guix build-system gnu))
25
26 (define-public libffi
27 (let ((post-install-phase
28 ;; Install headers in the right place.
29 '(lambda* (#:key outputs #:allow-other-keys)
30 (define out (assoc-ref outputs "out"))
31 (mkdir (string-append out "/include"))
32 (with-directory-excursion
33 (string-append out "/lib/libffi-3.0.9/include")
34 (for-each (lambda (h)
35 (format #t "moving `~a' to includedir~%" h)
36 (rename-file h (string-append out "/include/" h)))
37 (scandir "."
38 (lambda (x)
39 (not (member x '("." ".."))))))))))
40 (package
41 (name "libffi")
42 (version "3.0.9")
43 (source (origin
44 (method url-fetch)
45 (uri
46 (string-append "ftp://sourceware.org/pub/libffi/"
47 name "-" version ".tar.gz"))
48 (sha256
49 (base32
50 "0ln4jbpb6clcsdpb9niqk0frgx4k0xki96wiv067ig0q4cajb7aq"))))
51 (build-system gnu-build-system)
52 (arguments `(#:modules ((guix build utils) (guix build gnu-build-system)
53 (ice-9 ftw) (srfi srfi-26))
54 #:phases (alist-cons-after 'install 'post-install
55 ,post-install-phase
56 %standard-phases)))
57 (synopsis "libffi, a foreign function call interface library")
58 (description
59 "The libffi library provides a portable, high level programming interface
60 to various calling conventions. This allows a programmer to call any
61 function specified by a call interface description at run-time.
62
63 FFI stands for Foreign Function Interface. A foreign function interface is
64 the popular name for the interface that allows code written in one language
65 to call code written in another language. The libffi library really only
66 provides the lowest, machine dependent layer of a fully featured foreign
67 function interface. A layer must exist above libffi that handles type
68 conversions for values passed between the two languages.")
69 (home-page "http://sources.redhat.com/libffi/")
70
71 ;; See <http://github.com/atgreen/libffi/blob/master/LICENSE>.
72 (license expat))))
73