diff options
author | James Meyer <james.meyer@operamail.com> | 2009-10-01 03:04:09 (GMT) |
---|---|---|
committer | James Meyer <james.meyer@operamail.com> | 2009-10-01 03:04:09 (GMT) |
commit | 6db6462ab7360ef79a10ec23d9e09d9dedfe9bcc (patch) | |
tree | d6311e71ec6ea2ea3badbd99f9dfda0d2c863e8e /abs/extra-testing/sip/PKGBUILD | |
parent | 153c3be9ab1abb0b6384841ebcea9967a27e32a8 (diff) | |
download | linhes_pkgbuild-6db6462ab7360ef79a10ec23d9e09d9dedfe9bcc.zip linhes_pkgbuild-6db6462ab7360ef79a10ec23d9e09d9dedfe9bcc.tar.gz linhes_pkgbuild-6db6462ab7360ef79a10ec23d9e09d9dedfe9bcc.tar.bz2 |
pyqt,qcscintilla,sip: checkin needed for bld
Diffstat (limited to 'abs/extra-testing/sip/PKGBUILD')
-rw-r--r-- | abs/extra-testing/sip/PKGBUILD | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/abs/extra-testing/sip/PKGBUILD b/abs/extra-testing/sip/PKGBUILD new file mode 100644 index 0000000..e3486f4 --- /dev/null +++ b/abs/extra-testing/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 +} |