]> git.ipfire.org Git - people/ms/ipfire-3.x.git/blame - pkgs/core/swig/swig.nm
swig: New package.
[people/ms/ipfire-3.x.git] / pkgs / core / swig / swig.nm
CommitLineData
839b4e22
MT
1###############################################################################
2# #
3# IPFire.org - A linux based firewall #
4# Copyright (C) 2007, 2008 Michael Tremer & Christian Schmidt #
5# #
6# This program is free software: you can redistribute it and/or modify #
7# it under the terms of the GNU General Public License as published by #
8# the Free Software Foundation, either version 3 of the License, or #
9# (at your option) any later version. #
10# #
11# This program is distributed in the hope that it will be useful, #
12# but 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 this program. If not, see <http://www.gnu.org/licenses/>. #
18# #
19###############################################################################
20
21###############################################################################
22# Definitions
23###############################################################################
24
25include $(PKGROOT)/Include
26
27PKG_NAME = swig
28PKG_VER = 2.0.1
29PKG_REL = 0
30
31PKG_MAINTAINER =
32PKG_GROUP = Development/Tools
33PKG_URL = http://swig.sourceforge.net/
34PKG_LICENSE = GPLv3+ and BSD
35PKG_SUMMARY = Connects C/C++/Objective C to some high-level programming \
36 languages.
37
38PKG_BUILD_DEPS+= autoconf automake gcc-c++ pcre-devel perl python-devel
39
40define PKG_DESCRIPTION
41 Simplified Wrapper and Interface Generator (SWIG) is a software \
42 development tool for connecting C, C++ and Objective C programs with a \
43 variety of high-level programming languages. SWIG is primarily used \
44 with Perl, Python and Tcl/TK, but it has also been extended to Java, \
45 Eiffel and Guile. SWIG is normally used to create high-level \
46 interpreted programming environments, systems integration, and as a \
47 tool for building user interfaces.
48endef
49
50PKG_TARBALL = $(THISAPP).tar.gz
51
52CONFIGURE_OPTIONS += \
53 --sbindir=/sbin
54
55define STAGE_PREPARE_CMDS
56 cd $(DIR_APP) && ./autogen.sh
57endef