blob: 3714c65317dea8eae382286bedc1e12c1b592a64 (
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
# $Id: PKGBUILD 249777 2015-10-27 00:15:37Z eric $
# Maintainer (Arch): Eric Bélanger <eric@archlinux.org>
# Maintainer: Márcio Silva <coadde@parabola.nu>
pkgbase=python-pygame-hg
pkgname=(python-pygame-hg python2-pygame-hg)
#hg log -l 1 -b default
_pkgcmt=3549
_pkgrev=9886cf74b303
pkgver=1.9.2b1.$_pkgcmt.$_pkgrev
pkgrel=1
pkgdesc="Python game library"
arch=('i686' 'x86_64' 'armv7h')
url="http://www.pygame.org/"
license=('LGPL')
depends=('sdl_mixer' 'sdl_ttf' 'sdl_image' 'portmidi')
makedepends=('python-setuptools' 'python2-setuptools' 'mercurial')
source=(pygame-${pkgver}release::hg+https://bitbucket.org/pygame/pygame#revision=$_pkgrev
pygame-joystick.patch)
sha1sums=('SKIP'
'62eb0a3188ef64911b8fab479bd8ff17b153e2f2')
prepare() {
cd pygame-${pkgver}release
patch -p1 -i "${srcdir}/pygame-joystick.patch"
cd ..
cp -a pygame{,2}-${pkgver}release
cd pygame2-${pkgver}release
find . -type f -exec sed -i 's#/usr/bin/env python#/usr/bin/env python2#' {} +
}
package_python-pygame-hg() {
depends=('sdl_mixer' 'sdl_ttf' 'sdl_image' 'python' 'portmidi')
provides=('python-pygame')
conflicts=('python-pygame')
cd pygame-${pkgver}release
python config.py -auto
python setup.py install --root="${pkgdir}" --prefix=/usr
# Copying the examples and tests
cp -R examples lib/* "${pkgdir}/usr/lib/python3.5/site-packages/pygame"
cp -R test/* "${pkgdir}/usr/lib/python3.5/site-packages/pygame/tests"
# Fixing permissions
chmod 644 "${pkgdir}"/usr/include/python3.5m/pygame/*
}
package_python2-pygame-hg() {
depends=('sdl_mixer' 'sdl_ttf' 'sdl_image' 'python2' 'portmidi')
provides=('python2-pygame')
conflicts=('python2-pygame')
cd pygame2-${pkgver}release
python2 config.py -auto
python2 setup.py install --root="${pkgdir}" --prefix=/usr
# Copying the examples and tests
cp -R examples lib/* "${pkgdir}/usr/lib/python2.7/site-packages/pygame"
cp -R test/* "${pkgdir}/usr/lib/python2.7/site-packages/pygame/tests"
# Fixing permissions
chmod 644 "${pkgdir}"/usr/include/python2.7/pygame/*
}
|