mirror of
https://github.com/void-linux/void-packages.git
synced 2025-06-05 06:33:50 +02:00
armagetronad: update to 0.2.9.1.1.
This commit is contained in:
parent
c07689d6fc
commit
bcbeca1417
2 changed files with 24 additions and 7 deletions
17
srcpkgs/armagetronad/patches/python3.patch
Normal file
17
srcpkgs/armagetronad/patches/python3.patch
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
--- a/language/update.py
|
||||||
|
+++ b/language/update.py
|
||||||
|
@@ -1,4 +1,4 @@
|
||||||
|
-#!/usr/bin/python2
|
||||||
|
+#!/usr/bin/python3
|
||||||
|
# usage: call here to bring all translations up to date
|
||||||
|
# usage forms:
|
||||||
|
# update.py [--complete] <list of language files>
|
||||||
|
@@ -203,7 +203,7 @@
|
||||||
|
# read dictionary
|
||||||
|
self.ReadDictionary( file )
|
||||||
|
# store it
|
||||||
|
- self.translations[string.split(file,".")[0]] = self.dictionary
|
||||||
|
+ self.translations[file.split(".")[0]] = self.dictionary
|
||||||
|
del self.dictionary
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
|
@ -1,21 +1,21 @@
|
||||||
# Template file for 'armagetronad'
|
# Template file for 'armagetronad'
|
||||||
pkgname=armagetronad
|
pkgname=armagetronad
|
||||||
version=0.2.8.3.5
|
version=0.2.9.1.1
|
||||||
revision=2
|
revision=1
|
||||||
build_style=gnu-configure
|
build_style=gnu-configure
|
||||||
conf_files="/etc/games/${pkgname}/*.cfg
|
conf_files="/etc/games/${pkgname}/*.cfg
|
||||||
/etc/games/${pkgname}/*.srv"
|
/etc/games/${pkgname}/*.srv"
|
||||||
configure_args="--disable-useradd"
|
configure_args="--disable-useradd"
|
||||||
hostmakedepends="m4"
|
hostmakedepends="m4 pkg-config"
|
||||||
makedepends="libX11-devel libxml2-devel libICE-devel libpng-devel glu-devel
|
makedepends="libX11-devel libxml2-devel libICE-devel libpng-devel glu-devel
|
||||||
libjpeg-turbo-devel SDL_image-devel SDL_mixer-devel"
|
libjpeg-turbo-devel SDL_image-devel SDL_mixer-devel"
|
||||||
short_desc="3D Lightcycle game from the movie Tron with advanced capabilities"
|
short_desc="3D Lightcycle game from the movie Tron with advanced capabilities"
|
||||||
maintainer="Toyam Cox <Vaelatern@gmail.com>"
|
maintainer="Toyam Cox <Vaelatern@gmail.com>"
|
||||||
license="GPL-2.0-or-later"
|
license="GPL-2.0-or-later"
|
||||||
homepage="http://armagetronad.org"
|
homepage="https://armagetronad.org"
|
||||||
distfiles="${SOURCEFORGE_SITE}/$pkgname/$pkgname-$version.src.tar.bz2"
|
distfiles="https://launchpad.net/armagetronad/${version%.*.*}/${version}/+download/armagetronad-${version}.tbz"
|
||||||
checksum=1dc3962fc77f4fd64a795ff4e3c02518e2a79bb57f9ed599ba43eff8eb51d2ef
|
checksum=f617de700ecf1dd11f75e2932ee74796729112352d5cabaa2bc479add7dffd32
|
||||||
python_version=2
|
python_version=3
|
||||||
|
|
||||||
do_configure() {
|
do_configure() {
|
||||||
mkdir build_dedicated
|
mkdir build_dedicated
|
||||||
|
|
Loading…
Add table
Reference in a new issue