blob: 48b2cd96f9db1b022ed78718234ab90af9d5497f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# $Id: PKGBUILD 110667 2011-02-21 12:01:59Z stephane $
# Maintainer: Andrea Scarpino <andrea@archlinux.org>
pkgname=python-sip
pkgver=4.12.1
pkgrel=2
arch=('i686' 'x86_64')
url="http://www.riverbankcomputing.com/software/sip/"
license=('custom:"sip"')
pkgdesc="A tool that makes it easy to create Python 3 bindings for C and C++ libraries"
depends=('python2-sip' 'python')
source=("http://www.riverbankcomputing.com/static/Downloads/sip4/sip-${pkgver}.tar.gz")
md5sums=('0f8e8305b14c1812191de2e0ee22fea9')
build() {
cd "${srcdir}/sip-${pkgver}"
python configure.py CFLAGS="${CFLAGS}" LFLAGS="${LDFLAGS}"
make
}
package() {
cd "${srcdir}/sip-${pkgver}"
make DESTDIR="${pkgdir}" install
install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
# Provided by python2-sip package
rm "${pkgdir}/usr/bin/sip"
}
|