[arch-commits] Commit in widelands/repos (10 files)
Sven-Hendrik Haase
svenstaro at nymeria.archlinux.org
Wed Nov 27 16:48:17 UTC 2013
Date: Wednesday, November 27, 2013 @ 17:48:17
Author: svenstaro
Revision: 101552
archrelease: copy trunk to community-staging-i686, community-staging-x86_64
Added:
widelands/repos/community-staging-i686/
widelands/repos/community-staging-i686/PKGBUILD
(from rev 101551, widelands/trunk/PKGBUILD)
widelands/repos/community-staging-i686/widelands.desktop
(from rev 101551, widelands/trunk/widelands.desktop)
widelands/repos/community-staging-i686/widelands.png
(from rev 101551, widelands/trunk/widelands.png)
widelands/repos/community-staging-i686/widelands.sh
(from rev 101551, widelands/trunk/widelands.sh)
widelands/repos/community-staging-x86_64/
widelands/repos/community-staging-x86_64/PKGBUILD
(from rev 101551, widelands/trunk/PKGBUILD)
widelands/repos/community-staging-x86_64/widelands.desktop
(from rev 101551, widelands/trunk/widelands.desktop)
widelands/repos/community-staging-x86_64/widelands.png
(from rev 101551, widelands/trunk/widelands.png)
widelands/repos/community-staging-x86_64/widelands.sh
(from rev 101551, widelands/trunk/widelands.sh)
--------------------------------------------+
community-staging-i686/PKGBUILD | 54 +++++++++++++++++++++++++++
community-staging-i686/widelands.desktop | 8 ++++
community-staging-i686/widelands.sh | 3 +
community-staging-x86_64/PKGBUILD | 54 +++++++++++++++++++++++++++
community-staging-x86_64/widelands.desktop | 8 ++++
community-staging-x86_64/widelands.sh | 3 +
6 files changed, 130 insertions(+)
Copied: widelands/repos/community-staging-i686/PKGBUILD (from rev 101551, widelands/trunk/PKGBUILD)
===================================================================
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2013-11-27 16:48:17 UTC (rev 101552)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase <sh at lutzhaase.com>
+# Contributor: Arkham <arkham at archlinux dot us>
+# Contributor: Christoph Zeiler <rabyte*gmail>
+
+pkgname=widelands
+pkgver=17
+_realver=build17
+pkgrel=11
+pkgdesc="A realtime strategy game with emphasis on economy and transport"
+arch=('i686' 'x86_64')
+url="http://widelands.org/"
+license=('GPL')
+depends=('sdl_mixer' 'sdl_image' 'sdl_net' 'sdl_ttf' 'sdl_gfx' 'lua51' 'glew' 'python2' 'boost-libs')
+makedepends=('cmake' 'boost' 'mesa')
+source=("https://launchpad.net/widelands/build17/build-17/+download/$pkgname-$_realver-src.tar.bz2"
+ $pkgname.desktop
+ $pkgname.png
+ $pkgname.sh)
+md5sums=('bdc9bc0aa631af1aa7fb450507611a58'
+ '15820bf099fd6f16251fe70a75c534bb'
+ '3dfda7e9ca76ca00dd98d745d0ceb328'
+ '7cae50aba5ed0cd2cfeea79124637b46')
+
+build() {
+ cd $srcdir/$pkgname-$_realver-src
+
+ sed -i "1 i #include <unistd.h>" src/main.cc
+ sed -i "/Boost_USE_STATIC_LIBS/d" CMakeLists.txt
+
+ mkdir -p build/compile && cd build/compile
+
+ cmake ../.. -DCMAKE_BUILD_TYPE=Release \
+ -DCMAKE_INSTALL_PREFIX=/usr \
+ -DWL_INSTALL_PREFIX=/usr \
+ -DWL_INSTALL_DATADIR=share/$pkgname \
+ -DWL_INSTALL_BINDIR=bin
+ make
+}
+
+package() {
+ depends=(${depends[@]} 'widelands-data')
+ cd $srcdir/$pkgname-$_realver-src/build/compile
+
+ make DESTDIR="$pkgdir" install
+
+ rm -r $pkgdir/usr/share/widelands/{campaigns,fonts,global,locale,maps,music,pics,scripting,sound,tribes,txts,worlds}
+
+ # Install bin, icon and desktop file
+ #install -Dm 755 src/$pkgname $pkgdir/usr/share/$pkgname/$pkgname
+ #install -Dm 755 $srcdir/$pkgname.sh $pkgdir/usr/bin/$pkgname
+ install -Dm644 $srcdir/$pkgname.png $pkgdir/usr/share/pixmaps/$pkgname.png
+ install -Dm644 $srcdir/$pkgname.desktop $pkgdir/usr/share/applications/$pkgname.desktop
+}
Copied: widelands/repos/community-staging-i686/widelands.desktop (from rev 101551, widelands/trunk/widelands.desktop)
===================================================================
--- community-staging-i686/widelands.desktop (rev 0)
+++ community-staging-i686/widelands.desktop 2013-11-27 16:48:17 UTC (rev 101552)
@@ -0,0 +1,8 @@
+[Desktop Entry]
+Name=Widelands
+GenericName=Widelands
+Comment=Realtime strategy game
+Icon=widelands
+Exec=widelands
+Type=Application
+Categories=Game;StrategyGame;
Copied: widelands/repos/community-staging-i686/widelands.png (from rev 101551, widelands/trunk/widelands.png)
===================================================================
(Binary files differ)
Copied: widelands/repos/community-staging-i686/widelands.sh (from rev 101551, widelands/trunk/widelands.sh)
===================================================================
--- community-staging-i686/widelands.sh (rev 0)
+++ community-staging-i686/widelands.sh 2013-11-27 16:48:17 UTC (rev 101552)
@@ -0,0 +1,3 @@
+#!/bin/sh
+cd /usr/share/widelands
+./widelands $*
Copied: widelands/repos/community-staging-x86_64/PKGBUILD (from rev 101551, widelands/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2013-11-27 16:48:17 UTC (rev 101552)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase <sh at lutzhaase.com>
+# Contributor: Arkham <arkham at archlinux dot us>
+# Contributor: Christoph Zeiler <rabyte*gmail>
+
+pkgname=widelands
+pkgver=17
+_realver=build17
+pkgrel=11
+pkgdesc="A realtime strategy game with emphasis on economy and transport"
+arch=('i686' 'x86_64')
+url="http://widelands.org/"
+license=('GPL')
+depends=('sdl_mixer' 'sdl_image' 'sdl_net' 'sdl_ttf' 'sdl_gfx' 'lua51' 'glew' 'python2' 'boost-libs')
+makedepends=('cmake' 'boost' 'mesa')
+source=("https://launchpad.net/widelands/build17/build-17/+download/$pkgname-$_realver-src.tar.bz2"
+ $pkgname.desktop
+ $pkgname.png
+ $pkgname.sh)
+md5sums=('bdc9bc0aa631af1aa7fb450507611a58'
+ '15820bf099fd6f16251fe70a75c534bb'
+ '3dfda7e9ca76ca00dd98d745d0ceb328'
+ '7cae50aba5ed0cd2cfeea79124637b46')
+
+build() {
+ cd $srcdir/$pkgname-$_realver-src
+
+ sed -i "1 i #include <unistd.h>" src/main.cc
+ sed -i "/Boost_USE_STATIC_LIBS/d" CMakeLists.txt
+
+ mkdir -p build/compile && cd build/compile
+
+ cmake ../.. -DCMAKE_BUILD_TYPE=Release \
+ -DCMAKE_INSTALL_PREFIX=/usr \
+ -DWL_INSTALL_PREFIX=/usr \
+ -DWL_INSTALL_DATADIR=share/$pkgname \
+ -DWL_INSTALL_BINDIR=bin
+ make
+}
+
+package() {
+ depends=(${depends[@]} 'widelands-data')
+ cd $srcdir/$pkgname-$_realver-src/build/compile
+
+ make DESTDIR="$pkgdir" install
+
+ rm -r $pkgdir/usr/share/widelands/{campaigns,fonts,global,locale,maps,music,pics,scripting,sound,tribes,txts,worlds}
+
+ # Install bin, icon and desktop file
+ #install -Dm 755 src/$pkgname $pkgdir/usr/share/$pkgname/$pkgname
+ #install -Dm 755 $srcdir/$pkgname.sh $pkgdir/usr/bin/$pkgname
+ install -Dm644 $srcdir/$pkgname.png $pkgdir/usr/share/pixmaps/$pkgname.png
+ install -Dm644 $srcdir/$pkgname.desktop $pkgdir/usr/share/applications/$pkgname.desktop
+}
Copied: widelands/repos/community-staging-x86_64/widelands.desktop (from rev 101551, widelands/trunk/widelands.desktop)
===================================================================
--- community-staging-x86_64/widelands.desktop (rev 0)
+++ community-staging-x86_64/widelands.desktop 2013-11-27 16:48:17 UTC (rev 101552)
@@ -0,0 +1,8 @@
+[Desktop Entry]
+Name=Widelands
+GenericName=Widelands
+Comment=Realtime strategy game
+Icon=widelands
+Exec=widelands
+Type=Application
+Categories=Game;StrategyGame;
Copied: widelands/repos/community-staging-x86_64/widelands.png (from rev 101551, widelands/trunk/widelands.png)
===================================================================
(Binary files differ)
Copied: widelands/repos/community-staging-x86_64/widelands.sh (from rev 101551, widelands/trunk/widelands.sh)
===================================================================
--- community-staging-x86_64/widelands.sh (rev 0)
+++ community-staging-x86_64/widelands.sh 2013-11-27 16:48:17 UTC (rev 101552)
@@ -0,0 +1,3 @@
+#!/bin/sh
+cd /usr/share/widelands
+./widelands $*
More information about the arch-commits
mailing list