paintown: rebuild against libpng, changed from allegro to sdl

This commit is contained in:
Michael Haesel 2014-09-10 17:00:19 +00:00
parent 1b88998aaa
commit 06d30583e2
3 changed files with 32 additions and 37 deletions

View File

@ -5,45 +5,48 @@
pkgname=paintown
pkgver=3.6.0
pkgrel=3
pkgrel=4
pkgdesc="An open source fighting game in the same genre as Streets of Rage and Teenage Mutant Ninja Turtles."
arch=('i686' 'x86_64')
arch=('x86_64')
url="http://paintown.sourceforge.net/"
license=('GPL')
depends=('python2' 'freetype2' 'allegro')
depends=('python2' 'freetype2' 'sdl' 'libpng' 'mpg123' 'libogg' 'libvorbis' 'harfbuzz')
makedepends=('cmake')
#install=paintown.install
source=(http://downloads.sourceforge.net/sourceforge/paintown/$pkgname-$pkgver.tar.bz2
paintown.png
paintown.desktop)
md5sums=('5c1160bee51fe2011a1141c490a5d368'
'ed547f1377212ea079cf9b0a1ad2d587'
'4144c695ad0bc4621e96ef9760f33b19')
source=("http://downloads.sourceforge.net/sourceforge/paintown/${pkgname}-${pkgver}.tar.bz2")
sha256sums=('81392d353e533dee9d5199be17798d796adff56d5c69814d4508c3e9c3a2034a')
build() {
cd "$srcdir/$pkgname-$pkgver"
# fix python2 header
prepare() {
cd ${pkgname}-${pkgver}
# fix python2 header
for file in $(find . -name '*.py' -print); do
sed -i "s#/usr/bin/python#/usr/bin/env python2#" $file
done
# not needed as cmake is used instead of scons
# sed -i "s#python#python2#" Makefile
mkdir -p build
cd build
cmake .. || return 1
make -j2 || return 1
sed -i "s/find_package(FREETYPE)/find_package(Freetype)/g" CMakeLists.txt
}
build() {
cd ${pkgname}-${pkgver}
# not needed as cmake is used instead of scons
# sed -i "s#python#python2#" Makefile
mkdir -p build && cd build
cmake \
-DPYTHON_INCLUDE_DIR=/usr/include/python2.7 \
-DPYTHON_LIBRARY=/usr/lib/libpython2.7.so \
-DFREETYPE_INCLUDE_DIR=/usr/include/freetype2 \
..
make
cp bin/paintown ..
cd ..
}
package() {
cd "$srcdir/$pkgname-$pkgver"
mkdir -p $pkgdir/usr/{bin,share/{paintown,pixmaps,applications,licenses/paintown}}
sh install.sh -d $pkgdir/usr/share/paintown -b $pkgdir/usr/bin
# correct the gnerated file to remove the wrong path (because $pkgdir/usr/bin is written in the file)
sed -i "s#$pkgdir##g" $pkgdir/usr/bin/paintown
install -m644 $srcdir/paintown.desktop $pkgdir/usr/share/applications/paintown.desktop
install -m644 $srcdir/paintown.png $pkgdir/usr/share/pixmaps/paintown.png
install -m644 LICENSE $pkgdir/usr/share/licenses/paintown/LICENSE
install -m644 LEGAL $pkgdir/usr/share/licenses/paintown/LEGAL
cd ${pkgname}-${pkgver}
mkdir -p "${pkgdir}"/usr/{bin,share/{paintown,pixmaps,applications,licenses/paintown}}
sh install.sh -d "${pkgdir}"/usr/share/paintown -b "${pkgdir}"/usr/bin
# correct the gnerated file to remove the wrong path (because ${pkgdir}/usr/bin is written in the file)
sed -i "s#${pkgdir}##g" "${pkgdir}/usr/bin/paintown"
install -m644 misc/paintown.desktop "${pkgdir}/usr/share/applications/paintown.desktop"
install -m644 misc/logo-256x256.png "${pkgdir}/usr/share/pixmaps/paintown.png"
install -m644 LICENSE "${pkgdir}/usr/share/licenses/paintown/LICENSE"
install -m644 LEGAL "${pkgdir}/usr/share/licenses/paintown/LEGAL"
}

View File

@ -1,8 +0,0 @@
[Desktop Entry]
Name=PainTown
Comment=Paintown is an open source fighting game in the same genre as Streets of Rage and Teenage Mutant Ninja Turtles.
Exec=paintown
Icon=paintown.png
Terminal=false
Type=Application
Categories=Application;Game;

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB