gnu: python-pandas: Fix build on 32-bit.
[jackhill/guix/guix.git] / gnu / packages / swig.scm
CommitLineData
832e64bd 1;;; GNU Guix --- Functional package management for GNU
809f1762 2;;; Copyright © 2013, 2015, 2016 Ludovic Courtès <ludo@gnu.org>
77a39799 3;;; Copyright © 2015 Mark H Weaver <mhw@netris.org>
832e64bd
LC
4;;;
5;;; This file is part of GNU Guix.
6;;;
7;;; GNU Guix is free software; you can redistribute it and/or modify it
8;;; under the terms of the GNU General Public License as published by
9;;; the Free Software Foundation; either version 3 of the License, or (at
10;;; your option) any later version.
11;;;
12;;; GNU Guix is distributed in the hope that it will be useful, but
13;;; WITHOUT ANY WARRANTY; without even the implied warranty of
14;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15;;; GNU General Public License for more details.
16;;;
17;;; You should have received a copy of the GNU General Public License
18;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
19
20(define-module (gnu packages swig)
21 #:use-module (guix packages)
22 #:use-module (guix download)
23 #:use-module (guix licenses)
24 #:use-module (guix build-system gnu)
25 #:use-module (gnu packages pcre)
26 #:use-module (gnu packages guile)
0a643dc6 27 #:use-module (gnu packages boost)
832e64bd 28 #:use-module (gnu packages python)
0160458b 29 #:use-module (gnu packages perl))
832e64bd 30
0160458b 31(define-public swig
832e64bd
LC
32 (package
33 (name "swig")
6305b81f 34 (version "3.0.10")
832e64bd
LC
35 (source (origin
36 (method url-fetch)
de67e922
LF
37 (uri (string-append "mirror://sourceforge/" name "/" name "/"
38 name "-" version "/"
39 name "-" version ".tar.gz"))
832e64bd
LC
40 (sha256
41 (base32
6305b81f 42 "0k7ljh07rla6223lhvljgg881b2qr7hmrfgic9a0j1pckpislf99"))))
832e64bd 43 (build-system gnu-build-system)
809f1762
LC
44 (native-inputs `(("boost" ,boost)
45 ("pcre" ,pcre "bin"))) ;for 'pcre-config'
46 (inputs `(;; Provide these to run the corresponding tests.
832e64bd 47 ("guile" ,guile-2.0)
6f7f2409
AE
48 ("perl" ,perl)))
49 ;; FIXME: reactivate input python as soon as the test failures
0160458b 50 ;; fatal error: Python.h: No such file or directory
6f7f2409
AE
51 ;; # include <Python.h>
52 ;; are fixed.
53 ;; The python part probably never worked and does not seem to
54 ;; be needed for currently dependent packages.
55;; ("python" ,python-wrapper)))
832e64bd
LC
56 (home-page "http://swig.org/")
57 (synopsis
58 "Interface compiler that connects C/C++ code to higher-level languages")
59 (description
60 "SWIG is an interface compiler that connects programs written in C and
61C++ with languages such as Perl, Python, Ruby, Scheme, and Tcl. It works by
62taking the declarations found in C/C++ header files and using them to generate
63the wrapper code that scripting languages need to access the underlying C/C++
64code. In addition, SWIG provides a variety of customization features that let
65you tailor the wrapping process to suit your application.")
66
67 ;; See http://www.swig.org/Release/LICENSE for details.
68 (license gpl3+)))