diff options
author | James Meyer <james.meyer@operamail.com> | 2010-08-30 22:26:00 (GMT) |
---|---|---|
committer | James Meyer <james.meyer@operamail.com> | 2010-08-30 22:26:00 (GMT) |
commit | 1f175a7b07b9553ce98d0546ac04dbb925ec0bc9 (patch) | |
tree | c969070115611a8a75f23d468aa5e0cf86a08121 /abs/extra/sip/PKGBUILD | |
parent | c4bd4457b5d640e1c8f5afbca7cd54c53691e5fc (diff) | |
download | linhes_pkgbuild-1f175a7b07b9553ce98d0546ac04dbb925ec0bc9.zip linhes_pkgbuild-1f175a7b07b9553ce98d0546ac04dbb925ec0bc9.tar.gz linhes_pkgbuild-1f175a7b07b9553ce98d0546ac04dbb925ec0bc9.tar.bz2 |
RESYNC EXTRA:
synced extra-testing -> extra repo
Signed-off-by: James Meyer <james.meyer@operamail.com>
Diffstat (limited to 'abs/extra/sip/PKGBUILD')
-rw-r--r-- | abs/extra/sip/PKGBUILD | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/abs/extra/sip/PKGBUILD b/abs/extra/sip/PKGBUILD new file mode 100644 index 0000000..e3486f4 --- /dev/null +++ b/abs/extra/sip/PKGBUILD @@ -0,0 +1,29 @@ +# $Id: PKGBUILD 47992 2009-07-30 10:16:59Z pierre $ +# Maintainer: Douglas Soares de Andrade <douglas@archlinux.org> +# Contributor: riai <riai@bigfoot.com>, Ben <ben@benmazer.net> + +pkgname=sip +pkgver=4.9 +pkgrel=1 +pkgdesc="A tool that makes it easy to create Python bindings for C and C++ libraries." +arch=(i686 x86_64) +url="http://www.riverbankcomputing.com/software/sip/" +license=('custom:"sip"') +depends=('python>=2.6' 'gcc-libs') +source=(http://riverbankcomputing.com/static/Downloads/sip4/${pkgname}-${pkgver}.tar.gz) + +build() { + cd ${srcdir}/${pkgname}-${pkgver} + + python configure.py -b /usr/bin \ + -d /usr/lib/python2.6/site-packages \ + -e /usr/include/python2.6 \ + -v /usr/share/sip + + make || return 1 + make DESTDIR=${pkgdir} install + # fix permissions + chmod 644 ${pkgdir}/usr/lib/python2.6/site-packages/sipdistutils.py + + install -m 644 -D LICENSE ${pkgdir}/usr/share/licenses/sip/LICENSE +} |