diff options
author | Cecil Hugh Watson <knoppmyth@gmail.com> | 2009-01-28 07:34:48 (GMT) |
---|---|---|
committer | Cecil Hugh Watson <knoppmyth@gmail.com> | 2009-01-28 07:34:48 (GMT) |
commit | ed63eead7302d38aa5a632b4e4b94a03f9a20202 (patch) | |
tree | 72d23893889630551800ed723c7182141924b701 /abs/extra-testing/swig/PKGBUILD | |
parent | 5d22477377dff808644fffa9566134a427db2772 (diff) | |
download | linhes_pkgbuild-ed63eead7302d38aa5a632b4e4b94a03f9a20202.zip linhes_pkgbuild-ed63eead7302d38aa5a632b4e4b94a03f9a20202.tar.gz linhes_pkgbuild-ed63eead7302d38aa5a632b4e4b94a03f9a20202.tar.bz2 |
crda and needed deps for those that need to set wireless country code.
Diffstat (limited to 'abs/extra-testing/swig/PKGBUILD')
-rw-r--r-- | abs/extra-testing/swig/PKGBUILD | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/abs/extra-testing/swig/PKGBUILD b/abs/extra-testing/swig/PKGBUILD new file mode 100644 index 0000000..e40f539 --- /dev/null +++ b/abs/extra-testing/swig/PKGBUILD @@ -0,0 +1,23 @@ +# $Id: PKGBUILD 14415 2008-10-06 08:59:13Z douglas $ +# Contributor: Tom Newsom <Jeepster@gmx.co.uk> +# Maintainer: Jason Chu <jason@archlinux.org> + +pkgname=swig +pkgver=1.3.36 +pkgrel=1 +pkgdesc="SWIG is a compiler that makes it easy to integrate C and C++ code with scripting languages" +arch=('i686' 'x86_64') +license=('custom') +source=("http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz") +url="http://www.swig.org/" +depends=('gcc' 'guile') + +md5sums=('8f30aa4130b62404099bbcba1bf429b1') + +build() { + cd $startdir/src/$pkgname-$pkgver + ./configure --prefix=/usr + make || return 1 + make DESTDIR=$startdir/pkg install + install -D -m644 LICENSE ${startdir}/pkg/usr/share/licenses/swig/license.txt +} |