# $Id: PKGBUILD 88505 2010-08-24 07:21:52Z eric $ # Maintainer: Eric Belanger # Contributor: Eric Johnson pkgname=pathological pkgver=1.1.3 pkgrel=6 pkgdesc="A puzzle game with the same feel as frozen bubble" arch=('i686' 'x86_64') url="http://pathological.sourceforge.net/" license=('GPL') depends=('python-pygame') makedepends=('netpbm') install=pathological.install changelog=ChangeLog source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.gz pathological.desktop pygame_181.patch encoding.patch) md5sums=('76a446080c0fed12baf39354d8e0ce4a' '0fbf64860efe3d287eb74681758c4f75'\ 'bcd59890efe29a9f8c83227656c31a3e' '06d9221d0d8adaf232a3766870a8bcc0') sha1sums=('70b1c9e12704c7fd3b301aa90bceee2e8373b7b9' '9b57f854ce9621542d810a21c61325de343950d7'\ '6f0aa0f74a87bd53771f2db6d3117981c4f070d3' '7dbaa9ced7da0094280425a68b4c8db3382f230a') build() { cd "${srcdir}/${pkgname}-${pkgver}" patch -p0 < ../encoding.patch patch -p1 < ../pygame_181.patch sed -i 's|X11R6/include/X11|share|' Makefile sed -i 's|usr/games|usr/bin|' Makefile make } package() { cd "${srcdir}/${pkgname}-${pkgver}" make DESTDIR="${pkgdir}" install sed -i 's|#!/usr/bin/python|#!/usr/bin/python2|' "${pkgdir}/usr/share/games/pathological/pathological.py" install -D -m644 ../pathological.desktop "${pkgdir}/usr/share/applications/pathological.desktop" chown root:games "${pkgdir}/var/games" chmod 775 "${pkgdir}/var/games" rm "${pkgdir}/var/games/pathological_scores" }