# HG changeset patch # User Hans-G?nter Theisgen # Date 1642250883 -3600 # Node ID e2d7785559f55dbad32cb9a2db9bdd4e160e7af7 # Parent daea73103f19da7cc2b96f5fe8f0d29ed6f9ca04 updated swig (4.0.1 -> 4.0.2) diff -r daea73103f19 -r e2d7785559f5 swig/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/swig/description.txt Sat Jan 15 13:48:03 2022 +0100 @@ -0,0 +1,18 @@ +SWIG is a software development tool that connects programs written in +C and C++ with a variety of high-level programming languages. +SWIG is used with different types of target languages including common +scripting languages such as Javascript, Perl, PHP, Python, Tcl and Ruby. +The list of supported languages also includes non-scripting languages +such as C#, D, Go language, Java including Android, Lua, OCaml, Octave, +Scilab and R. +Also several interpreted and compiled Scheme implementations (Guile, +MzScheme/Racket) are supported. +SWIG is most commonly used to create high-level interpreted or compiled +programming environments, user interfaces, and as a tool for testing and +prototyping C/C++ software. +SWIG is typically used to parse C/C++ interfaces and generate the +'glue code' required for the above target languages to call into the +C/C++ code. +SWIG can also export its parse tree in the form of XML. +SWIG is free software and the code that SWIG generates is compatible +with both commercial and non-commercial projects. diff -r daea73103f19 -r e2d7785559f5 swig/receipt --- a/swig/receipt Sat Jan 15 10:17:16 2022 +0000 +++ b/swig/receipt Sat Jan 15 13:48:03 2022 +0100 @@ -1,10 +1,10 @@ # SliTaz package receipt. PACKAGE="swig" -VERSION="4.0.1" +VERSION="4.0.2" CATEGORY="development" TAGS="compiler" -MAINTAINER="devel@slitaz.org" +MAINTAINER="maintainer@slitaz.org" LICENSE="GPL3" SHORT_DESC="A compiler that makes it easy to integrate C and C++ code with scripting languages." WEB_SITE="http://www.swig.org/" @@ -18,7 +18,9 @@ # Rules to configure and make the package. compile_rules() { - ./configure --prefix=/usr $CONFIGURE_ARGS && + ./configure \ + --prefix=/usr \ + $CONFIGURE_ARGS && make && make install }