blob: e381a501db31ff7fe0f88eef4f1707b253f7d0f4 (
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
# Maintainer (Arch): Lukas Jirkovsky <l.jirkovsky@gmail.com>
pkgname=makehuman
pkgver=1.1.0
pkgrel=1
pkgdesc="Parametrical modeling program for creating human bodies"
arch=('any')
url="http://www.makehuman.org/"
depends=('python2-numpy' 'python2-pyqt4' 'python2-opengl')
makedepends=('mercurial')
license=('AGPL3')
source=("hg+https://bitbucket.org/MakeHuman/makehuman#tag=$pkgver" \
"makehuman.desktop" "makehuman.sh")
md5sums=('SKIP'
'f54fdfbc6c783effc4624808d2547563'
'534db191b7c6cd5cf976c9a7089b524c')
prepare() {
cd "$srcdir/makehuman"
# make sure that we are using python2
find . -type f -name "*.py" -exec sed -i 's/^#!.*python$/&2/' '{}' ';'
sed -i 's|python"|python2"|' buildscripts/build_prepare.py
rm -rf "$srcdir/build"
}
build() {
cd "$srcdir/makehuman/buildscripts"
python2 build_prepare.py "$srcdir/makehuman" "$srcdir/build"
cd "$srcdir/build/makehuman"
# make sure that we are using python2 once again, because the build_prepare.py may have donwloaded some new files
find . -type f -name "*.py" -exec sed -i 's/^#!.*python$/&2/' '{}' ';'
# compile all modules so that they can be tracked by pacman
python2 -m compileall .
# and also optimize them
python2 -OO -m compileall .
}
package() {
install -d -m755 "$pkgdir/opt/"
cp -a "$srcdir/build/makehuman" "$pkgdir/opt/"
install -D -m644 "$srcdir/build/makehuman/icons/makehuman.png" "$pkgdir/usr/share/pixmaps/makehuman.png"
install -D -m755 "$srcdir/$pkgname.sh" "$pkgdir/usr/bin/$pkgname"
install -D -m644 "$srcdir/$pkgname.desktop" "$pkgdir/usr/share/applications/$pkgname.desktop"
}
|