Date: Monday, January 10, 2011 @ 20:46:24 Author: andrea Revision: 105712
rename sip as python2-sip Added: python2-sip/ python2-sip/repos/ python2-sip/trunk/ python2-sip/trunk/PKGBUILD ----------+ PKGBUILD | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) Added: python2-sip/trunk/PKGBUILD =================================================================== --- python2-sip/trunk/PKGBUILD (rev 0) +++ python2-sip/trunk/PKGBUILD 2011-01-11 01:46:24 UTC (rev 105712) @@ -0,0 +1,32 @@ +# $Id$ +# Maintainer: Andrea Scarpino <[email protected]> +# Contributor: Douglas Soares de Andrade <[email protected]> +# Contributor: riai <[email protected]>, Ben <[email protected]> + +pkgname=python2-sip +pkgver=4.12 +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=('python2' 'gcc-libs') +provides=("sip=${pkgver}") +replaces=('sip') +conflicts=('sip') +source=("http://www.riverbankcomputing.com/static/Downloads/sip4/sip-${pkgver}.tar.gz") +md5sums=('8a0998fbaf34bdab2c15af3d4fa3bc0e') + +build() { + cd ${srcdir}/sip-${pkgver} + + python2 configure.py + make +} + +package() { + cd ${srcdir}/sip-${pkgver} + make DESTDIR=${pkgdir} install + + install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE +} Property changes on: python2-sip/trunk/PKGBUILD ___________________________________________________________________ Added: svn:keywords + Id
