[arch-commits] Commit in cataclysm-dda/repos/community-x86_64 (4 files)

Kyle Keen kkeen at archlinux.org
Fri Jun 1 03:12:03 UTC 2018


    Date: Friday, June 1, 2018 @ 03:12:02
  Author: kkeen
Revision: 335358

archrelease: copy trunk to community-x86_64

Added:
  cataclysm-dda/repos/community-x86_64/PKGBUILD
    (from rev 335357, cataclysm-dda/trunk/PKGBUILD)
  cataclysm-dda/repos/community-x86_64/cataclysm-dda.install
    (from rev 335357, cataclysm-dda/trunk/cataclysm-dda.install)
Deleted:
  cataclysm-dda/repos/community-x86_64/PKGBUILD
  cataclysm-dda/repos/community-x86_64/cataclysm-dda.install

-----------------------+
 PKGBUILD              |  138 ++++++++++++++++++++++++------------------------
 cataclysm-dda.install |   10 +--
 2 files changed, 74 insertions(+), 74 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2018-06-01 03:11:45 UTC (rev 335357)
+++ PKGBUILD	2018-06-01 03:12:02 UTC (rev 335358)
@@ -1,69 +0,0 @@
-# $Id$
-# Maintainer: Kyle Keen <keenerd at gmail.com>
-
-pkgname=cataclysm-dda
-pkgver=0.C
-pkgrel=3
-pkgdesc="A post-apocalyptic roguelike."
-#url="http://cataclysmrl.blogspot.com/"
-#url="http://www.cataclysm.glyphgryph.com/"
-url="http://en.cataclysmdda.com/"
-arch=('i686' 'x86_64')
-license=("CCPL:by-sa")
-depends=('ncurses' 'lua')
-makedepends=('sdl2_image' 'sdl2_ttf' 'sdl2_mixer' 'freetype2')
-optdepends=('sdl2_image: for tiles'
-            'sdl2_ttf: for tiles'
-            'freetype2: for tiles'
-            'sdl2_mixer: for tiles')
-install=cataclysm-dda.install
-source=("$pkgname-$pkgver.tar.gz::https://github.com/CleverRaven/Cataclysm-DDA/archive/$pkgver.tar.gz")
-md5sums=('805132ab7651ba93e5247ced7fe1fc97')
-
-# official docs say to use lua51
-# but makefile supports lua52?
-# lua53 works, but git HEAD detects/uses lua51?
-
-# tiles + executable are about half of the package
-# next release looks like 2/3rds,  consider splitting
-# USE_XDG_DIR for next release
-
-build() {
-  cd "Cataclysm-DDA-$pkgver"
-
-  sed -i 's/-Werror//' Makefile
-  sed -i 's/ncursesw5-config/ncursesw6-config/' Makefile
-  #sed -i 's|"\(l.*h\)"|"lua5.1/\1"|' src/catalua.{h,cpp}
-
-  make PREFIX=/usr RELEASE=1 ZLEVELS=1 USE_HOME_DIR=1 LUA=1
-  make PREFIX=/usr RELEASE=1 ZLEVELS=1 USE_HOME_DIR=1 LUA=1 TILES=1 SOUND=1
-  #LUA_BINARY="/usr/bin/lua5.1"
-}
-
-package() {
-  cd "Cataclysm-DDA-$pkgver"
-
-  # no DESTDIR
-  make PREFIX="$pkgdir/usr" \
-  RELEASE=1 ZLEVELS=1 USE_HOME_DIR=1 LUA=1 TILES=0 SOUND=0 \
-  install
-  # doesn't install executable?
-  install -Dm755 cataclysm "$pkgdir/usr/bin/cataclysm"
-
-  make PREFIX="$pkgdir/usr" \
-  RELEASE=1 ZLEVELS=1 USE_HOME_DIR=1 LUA=1 TILES=1 SOUND=1 \
-  install
-
-  # Icon
-  install -D 'data/osx/AppIcon.iconset/icon_128x128.png' "$pkgdir/usr/share/icons/hicolor/128x128/apps/cataclysm-dda.png"
-
-  # Docs
-  install -d "$pkgdir/usr/share/doc/cataclysm-dda"
-  cp -r doc/* "$pkgdir/usr/share/doc/cataclysm-dda"
-  # undo symlink
-  rm "$pkgdir/usr/share/doc/cataclysm-dda/JSON_LOADING_ORDER.md"
-  cp 'data/json/LOADING_ORDER.md' "$pkgdir/usr/share/doc/cataclysm-dda/      JSON_LOADING_ORDER.md"
-
-  # License
-  install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: cataclysm-dda/repos/community-x86_64/PKGBUILD (from rev 335357, cataclysm-dda/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2018-06-01 03:12:02 UTC (rev 335358)
@@ -0,0 +1,69 @@
+# $Id$
+# Maintainer: Kyle Keen <keenerd at gmail.com>
+
+pkgname=cataclysm-dda
+pkgver=0.C
+pkgrel=4
+pkgdesc="A post-apocalyptic roguelike."
+#url="http://cataclysmrl.blogspot.com/"
+#url="http://www.cataclysm.glyphgryph.com/"
+url="http://en.cataclysmdda.com/"
+arch=('x86_64')
+license=("CCPL:by-sa")
+depends=('ncurses' 'lua' 'hicolor-icon-theme')
+makedepends=('sdl2_image' 'sdl2_ttf' 'sdl2_mixer' 'freetype2')
+optdepends=('sdl2_image: for tiles'
+            'sdl2_ttf: for tiles'
+            'freetype2: for tiles'
+            'sdl2_mixer: for tiles')
+install=cataclysm-dda.install
+source=("$pkgname-$pkgver.tar.gz::https://github.com/CleverRaven/Cataclysm-DDA/archive/$pkgver.tar.gz")
+md5sums=('805132ab7651ba93e5247ced7fe1fc97')
+
+# official docs say to use lua51
+# but makefile supports lua52?
+# lua53 works, but git HEAD detects/uses lua51?
+
+# tiles + executable are about half of the package
+# next release looks like 2/3rds,  consider splitting
+# USE_XDG_DIR for next release
+
+build() {
+  cd "Cataclysm-DDA-$pkgver"
+
+  sed -i 's/-Werror//' Makefile
+  sed -i 's/ncursesw5-config/ncursesw6-config/' Makefile
+  #sed -i 's|"\(l.*h\)"|"lua5.1/\1"|' src/catalua.{h,cpp}
+
+  make PREFIX=/usr RELEASE=1 ZLEVELS=1 USE_HOME_DIR=1 LUA=1
+  make PREFIX=/usr RELEASE=1 ZLEVELS=1 USE_HOME_DIR=1 LUA=1 TILES=1 SOUND=1
+  #LUA_BINARY="/usr/bin/lua5.1"
+}
+
+package() {
+  cd "Cataclysm-DDA-$pkgver"
+
+  # no DESTDIR
+  make PREFIX="$pkgdir/usr" \
+  RELEASE=1 ZLEVELS=1 USE_HOME_DIR=1 LUA=1 TILES=0 SOUND=0 \
+  install
+  # doesn't install executable?
+  install -Dm755 cataclysm "$pkgdir/usr/bin/cataclysm"
+
+  make PREFIX="$pkgdir/usr" \
+  RELEASE=1 ZLEVELS=1 USE_HOME_DIR=1 LUA=1 TILES=1 SOUND=1 \
+  install
+
+  # Icon
+  install -D 'data/osx/AppIcon.iconset/icon_128x128.png' "$pkgdir/usr/share/icons/hicolor/128x128/apps/cataclysm-dda.png"
+
+  # Docs
+  install -d "$pkgdir/usr/share/doc/cataclysm-dda"
+  cp -r doc/* "$pkgdir/usr/share/doc/cataclysm-dda"
+  # undo symlink
+  rm "$pkgdir/usr/share/doc/cataclysm-dda/JSON_LOADING_ORDER.md"
+  cp 'data/json/LOADING_ORDER.md' "$pkgdir/usr/share/doc/cataclysm-dda/      JSON_LOADING_ORDER.md"
+
+  # License
+  install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}

Deleted: cataclysm-dda.install
===================================================================
--- cataclysm-dda.install	2018-06-01 03:11:45 UTC (rev 335357)
+++ cataclysm-dda.install	2018-06-01 03:12:02 UTC (rev 335358)
@@ -1,5 +0,0 @@
-post_upgrade() {
-  echo "Save formats are almost always incompatible"
-  echo "Please delete all files in ~/.cataclysm-dda/save/"
-}
-

Copied: cataclysm-dda/repos/community-x86_64/cataclysm-dda.install (from rev 335357, cataclysm-dda/trunk/cataclysm-dda.install)
===================================================================
--- cataclysm-dda.install	                        (rev 0)
+++ cataclysm-dda.install	2018-06-01 03:12:02 UTC (rev 335358)
@@ -0,0 +1,5 @@
+post_upgrade() {
+  echo "Save formats are almost always incompatible"
+  echo "Please delete all files in ~/.cataclysm-dda/save/"
+}
+



More information about the arch-commits mailing list