Add original py++ and py++-svn PKGBUILDs.

This commit is contained in:
Benjamin Chrétien 2013-06-12 20:35:27 +09:00
commit c41c24ff96
2 changed files with 44 additions and 0 deletions

15
.SRCINFO Normal file
View file

@ -0,0 +1,15 @@
pkgbase = py++-svn
pkgdesc = Py++ package and Boost.Python library provide a complete solution for interfacing Python and C++
pkgver = 1856
pkgrel = 1
url = http://www.language-binding.net/index.html
arch = i686
arch = x86_64
license = custom
makedepends = subversion
depends = pygccxml
provides = py++
conflicts = py++
pkgname = py++-svn

29
PKGBUILD Normal file
View file

@ -0,0 +1,29 @@
pkgname=py++-svn
pkgver=1856
pkgrel=1
pkgdesc="Py++ package and Boost.Python library provide a complete solution for interfacing Python and C++"
arch=('i686' 'x86_64')
arch=('i686' 'x86_64')
url="http://www.language-binding.net/index.html"
depends=('pygccxml')
makedepends=('subversion')
provides=('py++')
conflicts=('py++')
license=('custom')
_svntrunk="http://pygccxml.svn.sourceforge.net/svnroot/pygccxml/pyplusplus_dev"
_svnmod="pyplusplus"
build() {
cd "$srcdir"
mkdir -p root
msg "Connecting to pyplusplus SVN server......."
svn co "$_svntrunk" "$_svnmod"
msg "Starting make..."
cd "$_svnmod"
python2 setup.py install --prefix=../root/
}
package() {
cp -r "$srcdir"/root/ "$pkgdir"/usr/
}