mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
25 lines
556 B
Bash
25 lines
556 B
Bash
# Maintainer: Adrián Chaves Fernández (Gallaecio) <adriyetichaves gmail.com>
|
|
|
|
pkgname=pivy-hg
|
|
pkgver=20141217
|
|
pkgrel=1
|
|
pkgdesc="Coin binding for Python."
|
|
arch=('x86_64')
|
|
url="http://pivy.coin3d.org"
|
|
license=('custom')
|
|
depends=('python2' 'soqt' 'glu')
|
|
makedepends=('swig' 'mercurial' 'libxmu')
|
|
provides=('pivy')
|
|
conflicts=('pivy')
|
|
source=('pivy::hg+https://bitbucket.org/Coin3D/pivy')
|
|
sha256sums=('SKIP')
|
|
|
|
package() {
|
|
cd pivy/
|
|
|
|
python2 setup.py install --root="${pkgdir}"
|
|
|
|
install -D -m 644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
|
|
}
|
|
|