Add libantlr3c
more/packages/java.scm
| 26 | 26 | #:use-module (guix build-system ant) | |
| 27 | 27 | #:use-module (guix build-system gnu) | |
| 28 | 28 | #:use-module (guix build-system trivial) | |
| 29 | + | #:use-module (gnu packages autotools) | |
| 29 | 30 | #:use-module (gnu packages base) | |
| 30 | 31 | #:use-module (gnu packages zip) | |
| 31 | 32 | #:use-module (gnu packages java)) | |
… | |||
| 623 | 624 | (native-inputs | |
| 624 | 625 | `(("which" ,which) | |
| 625 | 626 | ("java" ,icedtea "jdk"))) | |
| 627 | + | (propagated-inputs | |
| 628 | + | `(("java" ,icedtea "jdk"))) | |
| 626 | 629 | (inputs | |
| 627 | 630 | `(("java" ,icedtea))) | |
| 628 | 631 | (home-page "http://www.antlr2.org") | |
… | |||
| 767 | 770 | ("stringtemplate" ,stringtemplate3) | |
| 768 | 771 | ("stringtemplate4" ,stringtemplate4))))) | |
| 769 | 772 | ||
| 773 | + | (define-public antlr3-3.4 | |
| 774 | + | (package | |
| 775 | + | (name "antlr3") | |
| 776 | + | (version "3.4") | |
| 777 | + | (source (origin | |
| 778 | + | (method url-fetch) | |
| 779 | + | (uri (string-append "https://github.com/antlr/website-antlr3/raw/" | |
| 780 | + | "gh-pages/download/antlr-" | |
| 781 | + | version ".tar.gz")) | |
| 782 | + | (sha256 | |
| 783 | + | (base32 | |
| 784 | + | "1cwfswpk3jlzl1dhc6b6586srza8q0bbzwlxcq136p29v62fjrb3")))) | |
| 785 | + | (build-system ant-build-system) | |
| 786 | + | (arguments | |
| 787 | + | `(#:jar-name (string-append ,name "-" ,version ".jar") | |
| 788 | + | #:src-dir "tool/src/main/java:runtime/Java/src/main/java:tool/src/main/antlr3" | |
| 789 | + | #:tests? #f | |
| 790 | + | #:phases | |
| 791 | + | (modify-phases %standard-phases | |
| 792 | + | (add-after 'install 'bin-install | |
| 793 | + | (lambda* (#:key inputs outputs #:allow-other-keys) | |
| 794 | + | (let ((jar (string-append (assoc-ref outputs "out") "/share/java")) | |
| 795 | + | (bin (string-append (assoc-ref outputs "out") "/bin"))) | |
| 796 | + | (mkdir-p bin) | |
| 797 | + | (with-output-to-file (string-append bin "/antlr3") | |
| 798 | + | (lambda _ | |
| 799 | + | (display | |
| 800 | + | (string-append "#!/bin/sh\n" | |
| 801 | + | "java -cp " jar "/antlr3-3.3.jar:" | |
| 802 | + | (string-concatenate | |
| 803 | + | (find-files (assoc-ref inputs "stringtemplate") | |
| 804 | + | ".*\\.jar")) | |
| 805 | + | ":" | |
| 806 | + | (string-concatenate | |
| 807 | + | (find-files (string-append (assoc-ref inputs "antlr") "/lib") | |
| 808 | + | ".*\\.jar")) | |
| 809 | + | " org.antlr.Tool $*")))) | |
| 810 | + | (chmod (string-append bin "/antlr3") #o755)))) | |
| 811 | + | (add-before 'build 'generate-grammar | |
| 812 | + | (lambda _ | |
| 813 | + | (chdir "tool/src/main/antlr3/org/antlr/grammar/v3/") | |
| 814 | + | (for-each (lambda (file) | |
| 815 | + | (display file) | |
| 816 | + | (newline) | |
| 817 | + | (system* "antlr3" file)) | |
| 818 | + | '("ActionAnalysis.g" "ActionTranslator.g" "ANTLR.g" | |
| 819 | + | "ANTLRTreePrinter.g" "ANTLRv3.g" "ANTLRv3Tree.g" | |
| 820 | + | "AssignTokenTypesWalker.g" "CodeGenTreeWalker.g" | |
| 821 | + | "DefineGrammarItemsWalker.g" "LeftRecursiveRuleWalker.g" | |
| 822 | + | "TreeToNFAConverter.g")) | |
| 823 | + | (chdir "../../../../../../../..") | |
| 824 | + | (system* "antlr" "-o" "tool/src/main/java/org/antlr/tool" | |
| 825 | + | "tool/src/main/java/org/antlr/tool/serialize.g") | |
| 826 | + | (substitute* "tool/src/main/java/org/antlr/tool/LeftRecursiveRuleAnalyzer.java" | |
| 827 | + | (("import org.antlr.grammar.v3.\\*;") "import org.antlr.grammar.v3.*; | |
| 828 | + | import org.antlr.grammar.v3.ANTLRTreePrinter;")) | |
| 829 | + | (substitute* "tool/src/main/java/org/antlr/tool/Grammar.java" | |
| 830 | + | (("import org.antlr.grammar.v3.\\*;") | |
| 831 | + | "import org.antlr.grammar.v3.*;\n | |
| 832 | + | import org.antlr.grammar.v3.TreeToNFAConverter;\n | |
| 833 | + | import org.antlr.grammar.v3.DefineGrammarItemsWalker;\n | |
| 834 | + | import org.antlr.grammar.v3.ANTLRTreePrinter;")) | |
| 835 | + | (substitute* "tool/src/main/java/org/antlr/tool/ErrorManager.java" | |
| 836 | + | (("case NO_SUCH_ATTRIBUTE_PASS_THROUGH:") "")) | |
| 837 | + | (substitute* "tool/src/main/antlr3/org/antlr/grammar/v3/ANTLRParser.java" | |
| 838 | + | (("public Object getTree") "public GrammarAST getTree")) | |
| 839 | + | (substitute* "tool/src/main/antlr3/org/antlr/grammar/v3/ANTLRv3Parser.java" | |
| 840 | + | (("public Object getTree") "public CommonTree getTree")))) | |
| 841 | + | (add-before 'build 'fix-build-xml | |
| 842 | + | (lambda _ | |
| 843 | + | (substitute* "build.xml" | |
| 844 | + | (("<exec") "<copy todir=\"${classes.dir}\"> | |
| 845 | + | <fileset dir=\"tool/src/main/resources\"> | |
| 846 | + | <include name=\"**/*.stg\"/> | |
| 847 | + | <include name=\"**/*.st\"/> | |
| 848 | + | <include name=\"**/*.sti\"/> | |
| 849 | + | <include name=\"**/STLexer.tokens\"/> | |
| 850 | + | </fileset> | |
| 851 | + | </copy><exec"))))))) | |
| 852 | + | (native-inputs | |
| 853 | + | `(("antlr" ,antlr2) | |
| 854 | + | ("antlr3" ,antlr3-3.3))) | |
| 855 | + | (inputs | |
| 856 | + | `(("junit" ,java-junit))) | |
| 857 | + | (propagated-inputs | |
| 858 | + | `(("stringtemplate" ,stringtemplate3) | |
| 859 | + | ("stringtemplate4" ,stringtemplate4) | |
| 860 | + | ("antlr" ,antlr2) | |
| 861 | + | ("antlr3" ,antlr3-3.1))) | |
| 862 | + | (home-page "http://www.stringtemplate.org") | |
| 863 | + | (synopsis "") | |
| 864 | + | (description "") | |
| 865 | + | (license license:bsd-3))) | |
| 866 | + | ||
| 867 | + | (define-public libantlr3c | |
| 868 | + | (package | |
| 869 | + | (inherit antlr3) | |
| 870 | + | (name "libantlr3c") | |
| 871 | + | (build-system gnu-build-system) | |
| 872 | + | (native-inputs | |
| 873 | + | `(("autoconf" ,autoconf) | |
| 874 | + | ("automake" ,automake) | |
| 875 | + | ("libtool" ,libtool))) | |
| 876 | + | (propagated-inputs | |
| 877 | + | `(("antlr" ,antlr3))) | |
| 878 | + | (arguments | |
| 879 | + | `(#:configure-flags (list "--enable-64bit" "--disable-static") | |
| 880 | + | #:phases | |
| 881 | + | (modify-phases %standard-phases | |
| 882 | + | (add-before 'configure 'autoreconf | |
| 883 | + | (lambda _ | |
| 884 | + | (chdir "runtime/C") | |
| 885 | + | (system* "libtoolize") | |
| 886 | + | (system* "autoreconf" "-fiv")))))))) | |
| 887 | + | ||
| 770 | 888 | (define-public antlr3-3.3 | |
| 771 | 889 | (package | |
| 772 | 890 | (name "antlr3") | |
more/packages/messaging.scm unknown status 1
| 1 | + | ;;; GNU Guix --- Functional package management for GNU | |
| 2 | + | ;;; Copyright ?? 2017 Julien Lepiller <julien@lepiller.eu> | |
| 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 (more packages messaging) | |
| 20 | + | #:use-module (guix packages) | |
| 21 | + | #:use-module (guix download) | |
| 22 | + | #:use-module (guix git-download) | |
| 23 | + | #:use-module (guix build-system cmake) | |
| 24 | + | #:use-module (guix build-system gnu) | |
| 25 | + | #:use-module ((guix licenses) #:prefix license:) | |
| 26 | + | #:use-module (gnu packages) | |
| 27 | + | #:use-module (gnu packages autotools) | |
| 28 | + | #:use-module (gnu packages base) | |
| 29 | + | #:use-module (gnu packages compression) | |
| 30 | + | #:use-module (gnu packages databases) | |
| 31 | + | #:use-module (gnu packages gl) | |
| 32 | + | #:use-module (gnu packages glib) | |
| 33 | + | #:use-module (gnu packages gtk) | |
| 34 | + | #:use-module (gnu packages libupnp) | |
| 35 | + | #:use-module (gnu packages linux) | |
| 36 | + | #:use-module (gnu packages perl) | |
| 37 | + | #:use-module (gnu packages pkg-config) | |
| 38 | + | #:use-module (gnu packages pulseaudio) | |
| 39 | + | #:use-module (gnu packages readline) | |
| 40 | + | #:use-module (gnu packages tls) | |
| 41 | + | #:use-module (gnu packages video) | |
| 42 | + | #:use-module (gnu packages vim) | |
| 43 | + | #:use-module (gnu packages xiph) | |
| 44 | + | #:use-module (gnu packages xorg) | |
| 45 | + | #:use-module (gnu packages xml) | |
| 46 | + | #:use-module (more packages java)) | |
| 47 | + | ||
| 48 | + | ;; goes to check.scm | |
| 49 | + | (define-public bcunit | |
| 50 | + | (package | |
| 51 | + | (name "bcunit") | |
| 52 | + | ;; version 3.0 as released in github cannot be used | |
| 53 | + | (version "3.0-1") | |
| 54 | + | (source (origin | |
| 55 | + | (method git-fetch) | |
| 56 | + | (uri (git-reference | |
| 57 | + | (url "https://github.com/BelledonneCommunications/bcunit") | |
| 58 | + | (commit "cf1aaa36c5738c25e59c8fafbade388a0081cd53"))) | |
| 59 | + | (file-name (string-append name "-" version)) | |
| 60 | + | (sha256 | |
| 61 | + | (base32 | |
| 62 | + | "1ryzq704p7pfkxfy5fcp624lpa8y0s2raj4742hhr9d01j6dnghq")))) | |
| 63 | + | (build-system gnu-build-system) | |
| 64 | + | (arguments | |
| 65 | + | `(#:phases | |
| 66 | + | (modify-phases %standard-phases | |
| 67 | + | (add-before 'configure 'autogen | |
| 68 | + | (lambda _ | |
| 69 | + | (zero? (system* "./autogen.sh"))))))) | |
| 70 | + | (native-inputs | |
| 71 | + | `(("autoconf" ,autoconf) | |
| 72 | + | ("automake" ,automake) | |
| 73 | + | ("intltool" ,intltool) | |
| 74 | + | ("libtool" ,libtool) | |
| 75 | + | ("pkg-config" ,pkg-config) | |
| 76 | + | ("which" ,which))) | |
| 77 | + | (home-page "https://linphone.org") | |
| 78 | + | (synopsis "C unit testing framework") | |
| 79 | + | (description | |
| 80 | + | "fork of the defunct project CUnit (see below), with several fixes and | |
| 81 | + | patches applied.") | |
| 82 | + | (license license:lgpl2.0+))) | |
| 83 | + | ||
| 84 | + | ;; Fix in tls.scm | |
| 85 | + | (define-public mbedtls | |
| 86 | + | (package | |
| 87 | + | (name "mbedtls") | |
| 88 | + | (version "2.4.2") | |
| 89 | + | (source | |
| 90 | + | (origin | |
| 91 | + | (method url-fetch) | |
| 92 | + | ;; XXX: The download links on the website are script redirection links | |
| 93 | + | ;; which effectively lead to the format listed in the uri here. | |
| 94 | + | (uri (string-append "https://tls.mbed.org/download/mbedtls-" | |
| 95 | + | version "-apache.tgz")) | |
| 96 | + | (sha256 | |
| 97 | + | (base32 | |
| 98 | + | "065hn5zibzflivabdh9p41dknda7wicl2zhc936dmakqfjprip8p")))) | |
| 99 | + | (build-system gnu-build-system) | |
| 100 | + | (arguments | |
| 101 | + | `(#:phases | |
| 102 | + | (modify-phases %standard-phases | |
| 103 | + | (delete 'configure)) | |
| 104 | + | #:make-flags | |
| 105 | + | (list "CC=gcc" (string-append "DESTDIR=\"" (assoc-ref %outputs "out") "\"") | |
| 106 | + | "SHARED=1") | |
| 107 | + | #:validate-runpath? #f)) | |
| 108 | + | (native-inputs | |
| 109 | + | `(("perl" ,perl))) | |
| 110 | + | (synopsis "Small TLS library") | |
| 111 | + | (description | |
| 112 | + | "@code{mbed TLS}, formerly known as PolarSSL, makes it trivially easy | |
| 113 | + | for developers to include cryptographic and SSL/TLS capabilities in their | |
| 114 | + | (embedded) products, facilitating this functionality with a minimal | |
| 115 | + | coding footprint.") | |
| 116 | + | (home-page "https://tls.mbed.org") | |
| 117 | + | (license license:asl2.0))) | |
| 118 | + | ||
| 119 | + | (define-public bctoolbox | |
| 120 | + | (package | |
| 121 | + | (name "bctoolbox") | |
| 122 | + | (version "0.5.1") | |
| 123 | + | (source (origin | |
| 124 | + | (method url-fetch) | |
| 125 | + | (uri (string-append "https://github.com/BelledonneCommunications/" | |
| 126 | + | "bctoolbox/archive/" version ".tar.gz")) | |
| 127 | + | (file-name (string-append name "-" version ".tar.gz")) | |
| 128 | + | (sha256 | |
| 129 | + | (base32 | |
| 130 | + | "1qx65qva29ljpx42c530n96lc5f0gdxbkd33nkcvbpj641zkd2bi")))) | |
| 131 | + | (build-system gnu-build-system) | |
| 132 | + | (arguments | |
| 133 | + | `(#:phases | |
| 134 | + | (modify-phases %standard-phases | |
| 135 | + | (add-before 'configure 'autogen | |
| 136 | + | (lambda _ | |
| 137 | + | (zero? (system* "./autogen.sh"))))) | |
| 138 | + | #:configure-flags | |
| 139 | + | (list "--with-pic" "CFLAGS=-fPIC" "CXXFLAGS=-fPIC") | |
| 140 | + | #:make-flags (list "AM_V_CC=" "AM_V_CXX="))) | |
| 141 | + | (native-inputs | |
| 142 | + | `(("autoconf" ,autoconf) | |
| 143 | + | ("automake" ,automake) | |
| 144 | + | ("intltool" ,intltool) | |
| 145 | + | ("libtool" ,libtool) | |
| 146 | + | ("pkg-config" ,pkg-config) | |
| 147 | + | ("which" ,which))) | |
| 148 | + | (inputs | |
| 149 | + | `(("bcunit" ,bcunit))) | |
| 150 | + | (propagated-inputs | |
| 151 | + | `(("mbedtls-apache" ,mbedtls))) | |
| 152 | + | (home-page "https://linphone.org") | |
| 153 | + | (synopsis "OS abstraction layer") | |
| 154 | + | (description | |
| 155 | + | "Utilities library used by Belledonne Communications software like | |
| 156 | + | belle-sip, mediastreamer2 and linphone.") | |
| 157 | + | (license license:gpl2+))) | |
| 158 | + | ||
| 159 | + | (define-public ortp | |
| 160 | + | (package | |
| 161 | + | (name "ortp") | |
| 162 | + | (version "1.0.1") | |
| 163 | + | (source (origin | |
| 164 | + | (method url-fetch) | |
| 165 | + | (uri (string-append "https://github.com/BelledonneCommunications/" | |
| 166 | + | "ortp/archive/" version ".tar.gz")) | |
| 167 | + | (file-name (string-append name "-" version ".tar.gz")) | |
| 168 | + | (sha256 | |
| 169 | + | (base32 | |
| 170 | + | "1rkwawydvkk1bnl4y5fqm4ip472wsviys7mcd6ryhrb9p21azakv")))) | |
| 171 | + | (build-system gnu-build-system) | |
| 172 | + | (arguments | |
| 173 | + | `(#:phases | |
| 174 | + | (modify-phases %standard-phases | |
| 175 | + | (add-before 'configure 'autogen | |
| 176 | + | (lambda _ | |
| 177 | + | (zero? (system* "./autogen.sh"))))))) | |
| 178 | + | (native-inputs | |
| 179 | + | `(("autoconf" ,autoconf) | |
| 180 | + | ("automake" ,automake) | |
| 181 | + | ("intltool" ,intltool) | |
| 182 | + | ("libtool" ,libtool) | |
| 183 | + | ("pkg-config" ,pkg-config) | |
| 184 | + | ("which" ,which))) | |
| 185 | + | (inputs | |
| 186 | + | `(("bctoolbox" ,bctoolbox))) | |
| 187 | + | (home-page "https://linphone.org") | |
| 188 | + | (synopsis "RTP protocol implementation") | |
| 189 | + | (description | |
| 190 | + | "RTP protocol implementation.") | |
| 191 | + | (license license:gpl2+))) | |
| 192 | + | ||
| 193 | + | (define-public belle-sip | |
| 194 | + | (package | |
| 195 | + | (name "belle-sip") | |
| 196 | + | (version "1.6.1") | |
| 197 | + | (source (origin | |
| 198 | + | (method url-fetch) | |
| 199 | + | (uri (string-append "https://github.com/BelledonneCommunications/" | |
| 200 | + | "belle-sip/archive/" version ".tar.gz")) | |
| 201 | + | (file-name (string-append name "-" version ".tar.gz")) | |
| 202 | + | (sha256 | |
| 203 | + | (base32 | |
| 204 | + | "0bn5g4a62dg60lsm7qmmnqa6wrl1vs2z7sgwg3fmjgs044nlbsk0")))) | |
| 205 | + | (build-system gnu-build-system) | |
| 206 | + | (arguments | |
| 207 | + | `(#:phases | |
| 208 | + | (modify-phases %standard-phases | |
| 209 | + | (add-before 'configure 'autogen | |
| 210 | + | (lambda _ | |
| 211 | + | (zero? (system* "./autogen.sh"))))) | |
| 212 | + | #:configure-flags | |
| 213 | + | (list "CFLAGS=-D_temp=NULL" | |
| 214 | + | (string-append "--with-antlr=" (assoc-ref %build-inputs "antlr"))))) | |
| 215 | + | (native-inputs | |
| 216 | + | `(("autoconf" ,autoconf) | |
| 217 | + | ("automake" ,automake) | |
| 218 | + | ("intltool" ,intltool) | |
| 219 | + | ("libtool" ,libtool) | |
| 220 | + | ("pkg-config" ,pkg-config) | |
| 221 | + | ("vim" ,vim) | |
| 222 | + | ("which" ,which))) | |
| 223 | + | (inputs | |
| 224 | + | `(("antlr" ,antlr3) | |
| 225 | + | ("bctoolbox" ,bctoolbox) | |
| 226 | + | ("libantlr3c" ,libantlr3c))) | |
| 227 | + | (home-page "https://linphone.org") | |
| 228 | + | (synopsis "") | |
| 229 | + | (description | |
| 230 | + | "") | |
| 231 | + | (license license:gpl2+))) | |
| 232 | + | ||
| 233 | + | (define-public mediastreamer | |
| 234 | + | (package | |
| 235 | + | (name "mediastreamer") | |
| 236 | + | (version "2.15.1") | |
| 237 | + | (source (origin | |
| 238 | + | (method url-fetch) | |
| 239 | + | (uri (string-append "https://github.com/BelledonneCommunications/" | |
| 240 | + | "mediastreamer2/archive/" version ".tar.gz")) | |
| 241 | + | (file-name (string-append name "-" version ".tar.gz")) | |
| 242 | + | (sha256 | |
| 243 | + | (base32 | |
| 244 | + | "0ln8h2c420y25y8zx7bfmbh28yjxl3qpkhicv88pg06aqgpkwzay")))) | |
| 245 | + | (build-system gnu-build-system) | |
| 246 | + | (arguments | |
| 247 | + | `(#:phases | |
| 248 | + | (modify-phases %standard-phases | |
| 249 | + | (add-before 'configure 'autogen | |
| 250 | + | (lambda _ | |
| 251 | + | (zero? (system* "./autogen.sh"))))) | |
| 252 | + | #:configure-flags (list "--enable-external-ortp") | |
| 253 | + | #:make-flags (list "ECHO=echo"))) | |
| 254 | + | (native-inputs | |
| 255 | + | `(("autoconf" ,autoconf) | |
| 256 | + | ("automake" ,automake) | |
| 257 | + | ("intltool" ,intltool) | |
| 258 | + | ("libtool" ,libtool) | |
| 259 | + | ("pkg-config" ,pkg-config) | |
| 260 | + | ("vim" ,vim) | |
| 261 | + | ("which" ,which))) | |
| 262 | + | (inputs | |
| 263 | + | `(("bctoolbox" ,bctoolbox) | |
| 264 | + | ("ffmpeg" ,ffmpeg) | |
| 265 | + | ("glew" ,glew) | |
| 266 | + | ("libx11" ,libx11) | |
| 267 | + | ("libxext" ,libxext) | |
| 268 | + | ("libxv" ,libxv) | |
| 269 | + | ("mesa" ,mesa) | |
| 270 | + | ("opus" ,opus) | |
| 271 | + | ("ortp" ,ortp) | |
| 272 | + | ("pulseaudio" ,pulseaudio) | |
| 273 | + | ("speex" ,speex) | |
| 274 | + | ("speexdsp" ,speexdsp) | |
| 275 | + | ("v4l-utils" ,v4l-utils))) | |
| 276 | + | (home-page "https://linphone.org") | |
| 277 | + | (synopsis "") | |
| 278 | + | (description | |
| 279 | + | "") | |
| 280 | + | (license license:gpl2+))) | |
| 281 | + | ||
| 282 | + | (define-public linphone | |
| 283 | + | (package | |
| 284 | + | (name "linphone") | |
| 285 | + | (version "3.11.1") | |
| 286 | + | (source (origin | |
| 287 | + | (method url-fetch) | |
| 288 | + | (uri (string-append "http://www.linphone.org/releases/sources/" | |
| 289 | + | "linphone/linphone-" version ".tar.gz")) | |
| 290 | + | (sha256 | |
| 291 | + | (base32 | |
| 292 | + | "0kj0l3qa8wa07gk145lw6f8hmc7nk5xyvwj1c3dvk58l64yyz26w")))) | |
| 293 | + | (build-system gnu-build-system) | |
| 294 | + | (arguments | |
| 295 | + | `(#:phases | |
| 296 | + | (modify-phases %standard-phases | |
| 297 | + | (add-before 'configure 'autogen | |
| 298 | + | (lambda _ | |
| 299 | + | (zero? (system* "./autogen.sh"))))))) | |
| 300 | + | (native-inputs | |
| 301 | + | `(("autoconf" ,autoconf) | |
| 302 | + | ("automake" ,automake) | |
| 303 | + | ("intltool" ,intltool) | |
| 304 | + | ("libtool" ,libtool) | |
| 305 | + | ("pkg-config" ,pkg-config) | |
| 306 | + | ("which" ,which))) | |
| 307 | + | (inputs | |
| 308 | + | `(("bctoolbox" ,bctoolbox) | |
| 309 | + | ("eudev" ,eudev) | |
| 310 | + | ("gtk2" ,gtk+-2) | |
| 311 | + | ("libupnp" ,libupnp) | |
| 312 | + | ("libxml2" ,libxml2) | |
| 313 | + | ("mediastreamer" ,mediastreamer) | |
| 314 | + | ("ortp" ,ortp) | |
| 315 | + | ("readline" ,readline) | |
| 316 | + | ("speex" ,speex) | |
| 317 | + | ("sqlite" ,sqlite) | |
| 318 | + | ("zlib" ,zlib))) | |
| 319 | + | (home-page "https://linphone.org") | |
| 320 | + | (synopsis "VOIP application") | |
| 321 | + | (description | |
| 322 | + | "Linphone is an open source Voice Over IP phone (or SIP phone) that makes | |
| 323 | + | possible to communicate freely with people over the internet, with voice, video, | |
| 324 | + | and text instant messaging.") | |
| 325 | + | (license license:gpl2+))) |
more/packages/python.scm
| 350 | 350 | CSS tidy. Also supports URL rewriting in CSS files.") | |
| 351 | 351 | (license license:bsd-2))) | |
| 352 | 352 | ||
| 353 | - | ||
| 354 | 353 | (define-public python-sphinx-me | |
| 355 | 354 | (package | |
| 356 | 355 | (name "python-sphinx-me") |