commit 41e2e44cd3ae3b6a692976fae99365348a045e78 parent ec62026fa16c8e3c8b0845e78753326edccd32df Author: Nihal Jere <nihal@nihaljere.xyz> Date: Wed, 16 Jun 2021 13:00:49 -0500 swig: new package Diffstat:
A | swig/build | | | 23 | +++++++++++++++++++++++ |
A | swig/checksums | | | 1 | + |
A | swig/depends | | | 2 | ++ |
A | swig/sources | | | 1 | + |
A | swig/version | | | 1 | + |
5 files changed, 28 insertions(+), 0 deletions(-)
diff --git a/swig/build b/swig/build @@ -0,0 +1,23 @@ +#!/bin/sh -e + +./configure \ + --prefix=/usr \ + --without-perl5 \ + --without-octave \ + --without-scilab \ + --without-java \ + --without-javascript \ + --without-android \ + --without-guile \ + --without-mzscheme \ + --without-ruby \ + --without-php \ + --without-ocaml \ + --without-csharp \ + --without-lua \ + --without-r \ + --without-go \ + --without-go \ + +make +make DESTDIR="$1" install diff --git a/swig/checksums b/swig/checksums @@ -0,0 +1 @@ +d53be9730d8d58a16bf0cbd1f8ac0c0c3e1090573168bfa151b01eb47fa906fc diff --git a/swig/depends b/swig/depends @@ -0,0 +1 @@ +pcre make+ \ No newline at end of file diff --git a/swig/sources b/swig/sources @@ -0,0 +1 @@ +http://prdownloads.sourceforge.net/swig/swig-4.0.2.tar.gz diff --git a/swig/version b/swig/version @@ -0,0 +1 @@ +4.0.2 1