mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 10:32:13 +08:00
59 lines
1.6 KiB
Bash
59 lines
1.6 KiB
Bash
#
|
|
# Games Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# Maintainer: Adrián Chaves Fernández (Gallaecio) <adriyetichaves gmail.com>
|
|
# Contributor: Gene Kodadek <gkodadek@gmail.com>
|
|
|
|
pkgname=tuxpaint
|
|
pkgver=0.9.21
|
|
pkgrel=4
|
|
pkgdesc="Tux Paint is a free drawing program designed for young children."
|
|
arch=('i686' 'x86_64')
|
|
url="http://www.tuxpaint.org"
|
|
license=('GPL3')
|
|
depends=('fribidi' 'libpaper' 'librsvg' 'python2' 'sdl_image' 'sdl_mixer' 'sdl_pango' 'sdl_ttf')
|
|
backup=('etc/tuxpaint/tuxpaint.conf')
|
|
source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz)
|
|
md5sums=('a88401d1860648098eeed819cff038fa')
|
|
|
|
build() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
|
|
# Python 2 fix.
|
|
for file in docs/zh_tw/mkTuxpaintIM.py fonts/locale/zh_tw_docs/maketuxfont.py; do
|
|
sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_' $file
|
|
done
|
|
|
|
# Add categories to .desktop file.
|
|
echo "Categories=Game;KidsGame;Graphics;RasterGraphics;" >> src/tuxpaint.desktop
|
|
|
|
# Build.
|
|
make \
|
|
PREFIX=/usr
|
|
}
|
|
|
|
package() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
|
|
make \
|
|
PREFIX=/usr \
|
|
DESTDIR=$pkgdir \
|
|
CONFDIR=$pkgdir/etc \
|
|
MAN_PREFIX=$pkgdir/usr/share/man \
|
|
X11_ICON_PREFIX=$pkgdir/usr/share/pixmaps \
|
|
KDE_PREFIX="" \
|
|
KDE_ICON_PREFIX="" \
|
|
install
|
|
|
|
# Desktop integration.
|
|
install -D -m 644 $srcdir/$pkgname-$pkgver/src/tuxpaint.desktop \
|
|
$pkgdir/usr/share/applications/tuxpaint.desktop
|
|
|
|
# Permissions adjustments.
|
|
chmod -R 644 $pkgdir/usr/share/doc/tuxpaint-dev/*
|
|
chmod 755 $pkgdir/usr/share/doc/tuxpaint-dev/html
|
|
|
|
# Configuration stuff.
|
|
mkdir -p $pkgdir/etc/tuxpaint
|
|
mv $pkgdir/etc/tuxpaint.conf $pkgdir/etc/tuxpaint/
|
|
} |