gtk/gcompris/PKGBUILD
2014-08-07 17:50:15 +00:00

30 lines
961 B
Bash

pkgname=gcompris
pkgver=14.07
pkgrel=1
pkgdesc="Educational software suite comprising of numerous activities for children aged 2 to 10"
arch=('x86_64')
url="http://gcompris.net/"
license=('GPL3')
depends=('pygtk' 'python-pyxml' 'librsvg' 'gstreamer0.10-base-plugins')
makedepends=('texinfo' 'texi2html' 'intltool' 'gettext' 'gnuchess')
optdepends=('gnucap: for computer simulation within the electricity activity'
'tuxpaint: for the painting activity'
'gnuchess: for the chess activity')
source=("http://gcompris.net/download/${pkgname}-${pkgver}.tar.bz2")
sha256sums=('cfcca5113b2a2222dd4ae66861c2f82345ea667676b72e12943934f8a3a5475e')
build() {
cd ${pkgname}-${pkgver}
./configure --prefix=/usr
make
}
package() {
cd ${pkgname}-${pkgver}
make DESTDIR="${pkgdir}" install
# Fix path for editor
sed -i -e "~s~gcompris -a~gcompris -l /usr/lib/gcompris/ -a~" "${pkgdir}/usr/share/applications/gcompris-edit.desktop"
}