From 812b715ebd89fb9049df7000c721990084b525c6 Mon Sep 17 00:00:00 2001 From: root Date: Tue, 14 Feb 2012 23:14:55 +0000 Subject: Tue Feb 14 23:14:55 UTC 2012 --- staging/libnova/PKGBUILD | 27 ++++++++++++++++++++++++ staging/sip/PKGBUILD | 54 ++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 81 insertions(+) create mode 100644 staging/libnova/PKGBUILD create mode 100644 staging/sip/PKGBUILD (limited to 'staging') diff --git a/staging/libnova/PKGBUILD b/staging/libnova/PKGBUILD new file mode 100644 index 000000000..27c98df9d --- /dev/null +++ b/staging/libnova/PKGBUILD @@ -0,0 +1,27 @@ +# $Id: PKGBUILD 150152 2012-02-13 15:39:56Z ronald $ +# Maintainer: Ronald van Haren +# Contributor: Tobias Powalowski + +pkgname=libnova +pkgver=0.14.0 +pkgrel=1 +pkgdesc="A general purpose, double precision, celestial mechanics, astrometry and astrodynamics library." +url="http://libnova.sourceforge.net/" +license=('GPL2') +arch=('i686' 'x86_64') +depends=('glibc') +makedepends=('pkgconfig') +source=(http://downloads.sourceforge.net/sourceforge/libnova/$pkgname-$pkgver.tar.gz) +options=(!libtool) +sha1sums=('4ea7034a907d0578646b0d12fc4a095de8b23f51') + +build() { + cd ${srcdir}/${pkgname}-${pkgver} + ./configure --prefix=/usr + make +} + +package() { + cd ${srcdir}/${pkgname}-${pkgver} + make DESTDIR=${pkgdir} install +} diff --git a/staging/sip/PKGBUILD b/staging/sip/PKGBUILD new file mode 100644 index 000000000..e29f99793 --- /dev/null +++ b/staging/sip/PKGBUILD @@ -0,0 +1,54 @@ +# $Id: PKGBUILD 150156 2012-02-13 17:15:18Z andrea $ +# Maintainer: Andrea Scarpino +# Contributor: Douglas Soares de Andrade +# Contributor: riai , Ben + +pkgbase=sip +pkgname=('sip' 'python2-sip') +pkgver=4.13.2 +pkgrel=1 +arch=('i686' 'x86_64') +url="http://www.riverbankcomputing.com/software/sip/" +license=('custom:"sip"') +makedepends=('python' 'python2') +source=("http://www.riverbankcomputing.com/static/Downloads/sip4/${pkgbase}-${pkgver}.tar.gz") +md5sums=('5a12ea8e8a09b879ed2b3817e30fbc84') + +build() { + cd "${srcdir}" + cp -r ${pkgbase}-${pkgver} python2-${pkgbase}-${pkgver} + + cd "${srcdir}/${pkgbase}-${pkgver}" + python configure.py CFLAGS="${CFLAGS}" LFLAGS="${LDFLAGS}" + make + + ### Python2 version ### + cd "${srcdir}/python2-${pkgbase}-${pkgver}" + python2 configure.py CFLAGS="${CFLAGS}" LFLAGS="${LDFLAGS}" + make +} + +package_sip() { + pkgdesc="A tool that makes it easy to create Python bindings for C and C++ libraries" + depends=('python') + replaces=('python-sip') + provides=('python-sip') + + cd "${srcdir}/${pkgbase}-${pkgver}" + make DESTDIR="${pkgdir}" install + + install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" +} + +package_python2-sip() { + pkgdesc="A tool that makes it easy to create Python2 bindings for C and C++ libraries" + depends=('sip' 'python2') + + cd "${srcdir}/python2-${pkgbase}-${pkgver}" + make DESTDIR="${pkgdir}" install + + install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" + + # Provided by sip + rm "${pkgdir}/usr/bin/sip" +} -- cgit v1.2.3-54-g00ecf