mirror of
https://gitdl.cn/https://github.com/chakralinux/gtk.git
synced 2025-01-24 18:12:13 +08:00
32 lines
1.0 KiB
Bash
32 lines
1.0 KiB
Bash
pkgname=('gcompris')
|
|
pkgver=12.11
|
|
pkgrel=3
|
|
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' 'gnet' 'python-pysqlite'
|
|
'gstreamer0.10-base-plugins' 'filesystem-extra')
|
|
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')
|
|
options=('!libtool')
|
|
source=("http://downloads.sourceforge.net/project/$pkgname/$pkgver/$pkgname-$pkgver.tar.bz2")
|
|
md5sums=('3c6b3aee13708d9066366bbbc9b7d4ff')
|
|
|
|
build() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
|
|
./configure --prefix=/extra/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
make DESTDIR="$pkgdir" install
|
|
|
|
# Fix path for editor
|
|
sed -i -e "~s~gcompris -a~gcompris -l /extra/usr/lib/gcompris/ -a~" ${pkgdir}/extra/usr/share/applications/gcompris-edit.desktop
|
|
}
|