[arch-commits] Commit in dwarffortress/repos (6 files)
Sven-Hendrik Haase
svenstaro at nymeria.archlinux.org
Sat Jul 27 09:51:24 UTC 2013
Date: Saturday, July 27, 2013 @ 11:51:24
Author: svenstaro
Revision: 94557
archrelease: copy trunk to community-staging-i686
Added:
dwarffortress/repos/community-staging-i686/
dwarffortress/repos/community-staging-i686/PKGBUILD
(from rev 94556, dwarffortress/trunk/PKGBUILD)
dwarffortress/repos/community-staging-i686/dwarffortress
(from rev 94556, dwarffortress/trunk/dwarffortress)
dwarffortress/repos/community-staging-i686/dwarffortress.desktop
(from rev 94556, dwarffortress/trunk/dwarffortress.desktop)
dwarffortress/repos/community-staging-i686/dwarffortress.install
(from rev 94556, dwarffortress/trunk/dwarffortress.install)
dwarffortress/repos/community-staging-i686/dwarffortress.png
(from rev 94556, dwarffortress/trunk/dwarffortress.png)
-----------------------+
PKGBUILD | 80 ++++++++++++++++++++++++++++++++++++++++++++++++
dwarffortress | 7 ++++
dwarffortress.desktop | 9 +++++
dwarffortress.install | 16 +++++++++
4 files changed, 112 insertions(+)
Copied: dwarffortress/repos/community-staging-i686/PKGBUILD (from rev 94556, dwarffortress/trunk/PKGBUILD)
===================================================================
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2013-07-27 09:51:24 UTC (rev 94557)
@@ -0,0 +1,80 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase <sh at lutzhaase.com>
+# Contributor: Daenyth <Daenyth+Arch [AT] gmail [DOT] com>
+# Contributor: djnm <nmihalich [at} gmail dott com>
+pkgname=dwarffortress
+pkgver=0.34.11
+_pkgver=34_11
+pkgrel=4
+pkgdesc="A single-player fantasy game. You control a dwarven outpost or an adventurer in a randomly generated persistent world."
+arch=(i686 x86_64)
+# WIP Thread: http://www.bay12forums.com/smf/index.php?topic=66142.0
+url="http://www.bay12games.com/dwarves/"
+install="$pkgname.install"
+license=('custom:dwarffortress')
+depends=(gtk2 glu sdl_image libsndfile openal sdl_ttf glew)
+makedepends=(git)
+if [[ $CARCH == 'x86_64' ]]; then
+ depends=(gcc-multilib lib32-gtk2 lib32-glu lib32-sdl_image lib32-libsndfile lib32-openal
+ lib32-libxdamage lib32-ncurses lib32-sdl_ttf lib32-glew)
+ optdepends=('lib32-nvidia-utils: If you have nvidia graphics'
+ 'lib32-catalyst-utils: If you have ATI graphics'
+ 'lib32-alsa-lib: for alsa sound'
+ 'lib32-libpulse: for pulse sound')
+fi
+backup=('opt/df_linux/data/init/colors.txt'
+ 'opt/df_linux/data/init/init.txt'
+ 'opt/df_linux/data/init/d_init.txt'
+ 'opt/df_linux/data/init/interface.txt')
+# I made a fucking github repo with the sole purpose of unfucking df a bit
+# We try to compile whatever little bit of df is open source
+source=(http://www.bay12games.com/dwarves/df_${_pkgver}_linux.tar.bz2
+ git://github.com/svenstaro/dwarf_fortress_unfuck.git
+ dwarffortress
+ dwarffortress.desktop
+ dwarffortress.png)
+md5sums=('33e26a93e5914f7545fa1aaa53706eeb'
+ 'SKIP'
+ 'c19aacc31e8df354827db352fecfd200'
+ 'c8984d1eea6e409ecf339d6ee9e91e42'
+ 'b1d51f82400073af9bb179e34a9209d0')
+
+build() {
+ cd $srcdir/dwarf_fortress_unfuck
+
+ make
+}
+
+package() {
+ cd $srcdir/df_linux
+ install -dm755 $pkgdir/opt/
+ cp -r $srcdir/df_linux/ $pkgdir/opt/
+
+ # Yay for precompiled stuff with junk permissions! :D
+ find $pkgdir/opt/df_linux -type d -exec chmod 755 {} +
+ find $pkgdir/opt/df_linux -type f -exec chmod 644 {} +
+
+ install -Dm755 $srcdir/dwarffortress $pkgdir/usr/bin/dwarffortress
+
+ chmod 755 $pkgdir/opt/df_linux/libs/Dwarf_Fortress
+ install -Dm755 $srcdir/dwarf_fortress_unfuck/libs/libgraphics.so $pkgdir/opt/df_linux/libs/libgraphics.so
+ ln -s /usr/lib32/libpng.so $pkgdir/opt/df_linux/libs/libpng.so.3
+ rm $pkgdir/opt/df_linux/libs/{libgcc_s.so.1,libstdc++.so.6}
+
+ install -d -m775 -o root -g games $pkgdir/opt/df_linux/data/save
+
+ # This probably is overkill, but I don't know what specific files df needs permission for in here.
+ chmod 775 $pkgdir/opt/df_linux
+ chown root:games $pkgdir/opt/df_linux
+ chown -R root:games $pkgdir/opt/df_linux/data
+ find $pkgdir/opt/df_linux/data -type d -exec chmod 775 {} +
+ find $pkgdir/opt/df_linux/data -type f -exec chmod 664 {} +
+
+ # Desktop launcher with icon
+ install -Dm644 $srcdir/dwarffortress.desktop $pkgdir/usr/share/applications/dwarffortress.desktop
+ install -Dm644 $srcdir/dwarffortress.png $pkgdir/usr/share/pixmaps/dwarffortress.png
+
+ install -Dm644 $srcdir/df_linux/readme.txt $pkgdir/usr/share/licenses/dwarffortress/readme.txt
+}
+
+# vim:set ts=2 sw=2 et:
Copied: dwarffortress/repos/community-staging-i686/dwarffortress (from rev 94556, dwarffortress/trunk/dwarffortress)
===================================================================
--- community-staging-i686/dwarffortress (rev 0)
+++ community-staging-i686/dwarffortress 2013-07-27 09:51:24 UTC (rev 94557)
@@ -0,0 +1,7 @@
+#!/bin/sh
+cd /opt/df_linux
+export SDL_DISABLE_LOCK_KEYS=1 # Work around for bug in Debian/Ubuntu SDL patch.
+#export SDL_VIDEO_CENTERED=1 # Centre the screen. Messes up resizing.
+
+umask 0002 # Make sure that any saves created get 775/664
+exec ./libs/Dwarf_Fortress "$@"
Copied: dwarffortress/repos/community-staging-i686/dwarffortress.desktop (from rev 94556, dwarffortress/trunk/dwarffortress.desktop)
===================================================================
--- community-staging-i686/dwarffortress.desktop (rev 0)
+++ community-staging-i686/dwarffortress.desktop 2013-07-27 09:51:24 UTC (rev 94557)
@@ -0,0 +1,9 @@
+[Desktop Entry]
+Name=Dwarf Fortress
+GenericName=Dwarf Fortress
+Comment=A single-player fantasy game.
+Exec=dwarffortress
+Icon=/usr/share/pixmaps/dwarffortress.png
+Terminal=false
+Type=Application
+Categories=Game;
\ No newline at end of file
Copied: dwarffortress/repos/community-staging-i686/dwarffortress.install (from rev 94556, dwarffortress/trunk/dwarffortress.install)
===================================================================
--- community-staging-i686/dwarffortress.install (rev 0)
+++ community-staging-i686/dwarffortress.install 2013-07-27 09:51:24 UTC (rev 94557)
@@ -0,0 +1,16 @@
+## arg 1: the new package version
+post_install() {
+ echo "Make sure to add your user to the games group to play dwarffortress"
+ post_upgrade $1 0
+}
+
+## arg 1: the new package version
+## arg 2: the old package version
+post_upgrade() {
+ # Make sure that permissions are correct
+ chown -R root:games /opt/df_linux/data
+ find /opt/df_linux/data/save -type d -exec chmod 775 {} + &
+ find /opt/df_linux/data/save -type f -exec chmod 664 {} + &
+}
+
+# vim:set ts=2 sw=2 et:
Copied: dwarffortress/repos/community-staging-i686/dwarffortress.png (from rev 94556, dwarffortress/trunk/dwarffortress.png)
===================================================================
(Binary files differ)
More information about the arch-commits
mailing list