[arch-commits] Commit in angband/repos (4 files)
Evangelos Foutras
foutrelis at archlinux.org
Thu Sep 17 20:45:12 UTC 2015
Date: Thursday, September 17, 2015 @ 22:45:12
Author: foutrelis
Revision: 140434
archrelease: copy trunk to community-testing-i686, community-testing-x86_64
Added:
angband/repos/community-testing-i686/PKGBUILD
(from rev 140433, angband/trunk/PKGBUILD)
angband/repos/community-testing-x86_64/PKGBUILD
(from rev 140433, angband/trunk/PKGBUILD)
Deleted:
angband/repos/community-testing-i686/PKGBUILD
angband/repos/community-testing-x86_64/PKGBUILD
-----------------------------------+
/PKGBUILD | 110 ++++++++++++++++++++++++++++++++++++
community-testing-i686/PKGBUILD | 46 ---------------
community-testing-x86_64/PKGBUILD | 46 ---------------
3 files changed, 110 insertions(+), 92 deletions(-)
Deleted: community-testing-i686/PKGBUILD
===================================================================
--- community-testing-i686/PKGBUILD 2015-09-17 20:43:26 UTC (rev 140433)
+++ community-testing-i686/PKGBUILD 2015-09-17 20:45:12 UTC (rev 140434)
@@ -1,46 +0,0 @@
-# Maintainer: schuay <jakob.gruber at gmail.com>
-# Contributor: Mike Sampson <mike at sambodata dot com>
-# Contributor: Adrian Stratulat <adrian.stratulat at inboxcom>
-# Contributor: Anton Bazhenov <anton.bazhenov at gmail>
-# Contributor: KillaB <xGenoBlast at gmail.com>
-# Contributor: Callan Barrett <wizzomafizzo at gmail.com>
-# Contributor: Christian Schmidt <xmucknertx at googlemail.com>
-# Contributor: Sebastian Sareyko <public at nooms.de>
-
-pkgname=angband
-pkgver=4.0.1
-pkgrel=2
-pkgdesc="A roguelike dungeon exploration game based on the writings of JRR Tolkien"
-arch=('i686' 'x86_64')
-url="http://rephial.org/"
-license=('GPL2' 'custom')
-depends=('sdl_image' 'sdl_ttf' 'sdl_mixer' 'ncurses')
-makedepends=('python-docutils')
-source=("http://rephial.org/downloads/${pkgver:0:3}/${pkgname}-${pkgver}.tar.gz")
-
-build() {
- cd "${srcdir}/${pkgname}-${pkgver}"
-
- ./configure \
- --prefix=/usr \
- --bindir=/usr/bin \
- --sysconfdir=/usr/share/angband \
- --with-configpath=/usr/share/angband \
- --with-libpath=/usr/share/angband \
- --enable-gtk \
- --enable-sdl \
- --enable-sdl-mixer
-
- make
-}
-
-package() {
- cd "${srcdir}/${pkgname}-${pkgver}"
-
- make DESTDIR="${pkgdir}" install
-
- rm -f "${pkgdir}/usr/share/angband/*/delete.me"
- install -Dm644 copying.txt "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
-}
-
-md5sums=('242dca62b4c4cd1749305287b7636691')
Copied: angband/repos/community-testing-i686/PKGBUILD (from rev 140433, angband/trunk/PKGBUILD)
===================================================================
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2015-09-17 20:45:12 UTC (rev 140434)
@@ -0,0 +1,55 @@
+# Maintainer: schuay <jakob.gruber at gmail.com>
+# Contributor: Mike Sampson <mike at sambodata dot com>
+# Contributor: Adrian Stratulat <adrian.stratulat at inboxcom>
+# Contributor: Anton Bazhenov <anton.bazhenov at gmail>
+# Contributor: KillaB <xGenoBlast at gmail.com>
+# Contributor: Callan Barrett <wizzomafizzo at gmail.com>
+# Contributor: Christian Schmidt <xmucknertx at googlemail.com>
+# Contributor: Sebastian Sareyko <public at nooms.de>
+
+pkgname=angband
+pkgver=4.0.2
+pkgrel=2
+pkgdesc="A roguelike dungeon exploration game based on the writings of JRR Tolkien"
+arch=('i686' 'x86_64')
+url="http://rephial.org/"
+license=('GPL2' 'custom')
+depends=('sdl_image' 'sdl_ttf' 'sdl_mixer' 'ncurses')
+makedepends=('python-docutils')
+source=("http://rephial.org/downloads/${pkgver:0:3}/${pkgname}-${pkgver}.tar.gz")
+
+prepare() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+
+ # Fix detection of ncurses config script for ncurses 6.0
+ sed -i 's/ncursesw5-config/ncursesw6-config/g' acinclude.m4
+}
+
+build() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+
+ ./autogen.sh
+
+ ./configure \
+ --prefix=/usr \
+ --bindir=/usr/bin \
+ --sysconfdir=/usr/share/angband \
+ --with-configpath=/usr/share/angband \
+ --with-libpath=/usr/share/angband \
+ --enable-gtk \
+ --enable-sdl \
+ --enable-sdl-mixer
+
+ make
+}
+
+package() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+
+ make DESTDIR="${pkgdir}" install
+
+ rm -f "${pkgdir}/usr/share/angband/*/delete.me"
+ install -Dm644 copying.txt "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
+}
+
+md5sums=('b4c96762281307e69b95114b9b3a6487')
Deleted: community-testing-x86_64/PKGBUILD
===================================================================
--- community-testing-x86_64/PKGBUILD 2015-09-17 20:43:26 UTC (rev 140433)
+++ community-testing-x86_64/PKGBUILD 2015-09-17 20:45:12 UTC (rev 140434)
@@ -1,46 +0,0 @@
-# Maintainer: schuay <jakob.gruber at gmail.com>
-# Contributor: Mike Sampson <mike at sambodata dot com>
-# Contributor: Adrian Stratulat <adrian.stratulat at inboxcom>
-# Contributor: Anton Bazhenov <anton.bazhenov at gmail>
-# Contributor: KillaB <xGenoBlast at gmail.com>
-# Contributor: Callan Barrett <wizzomafizzo at gmail.com>
-# Contributor: Christian Schmidt <xmucknertx at googlemail.com>
-# Contributor: Sebastian Sareyko <public at nooms.de>
-
-pkgname=angband
-pkgver=4.0.1
-pkgrel=2
-pkgdesc="A roguelike dungeon exploration game based on the writings of JRR Tolkien"
-arch=('i686' 'x86_64')
-url="http://rephial.org/"
-license=('GPL2' 'custom')
-depends=('sdl_image' 'sdl_ttf' 'sdl_mixer' 'ncurses')
-makedepends=('python-docutils')
-source=("http://rephial.org/downloads/${pkgver:0:3}/${pkgname}-${pkgver}.tar.gz")
-
-build() {
- cd "${srcdir}/${pkgname}-${pkgver}"
-
- ./configure \
- --prefix=/usr \
- --bindir=/usr/bin \
- --sysconfdir=/usr/share/angband \
- --with-configpath=/usr/share/angband \
- --with-libpath=/usr/share/angband \
- --enable-gtk \
- --enable-sdl \
- --enable-sdl-mixer
-
- make
-}
-
-package() {
- cd "${srcdir}/${pkgname}-${pkgver}"
-
- make DESTDIR="${pkgdir}" install
-
- rm -f "${pkgdir}/usr/share/angband/*/delete.me"
- install -Dm644 copying.txt "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
-}
-
-md5sums=('242dca62b4c4cd1749305287b7636691')
Copied: angband/repos/community-testing-x86_64/PKGBUILD (from rev 140433, angband/trunk/PKGBUILD)
===================================================================
--- community-testing-x86_64/PKGBUILD (rev 0)
+++ community-testing-x86_64/PKGBUILD 2015-09-17 20:45:12 UTC (rev 140434)
@@ -0,0 +1,55 @@
+# Maintainer: schuay <jakob.gruber at gmail.com>
+# Contributor: Mike Sampson <mike at sambodata dot com>
+# Contributor: Adrian Stratulat <adrian.stratulat at inboxcom>
+# Contributor: Anton Bazhenov <anton.bazhenov at gmail>
+# Contributor: KillaB <xGenoBlast at gmail.com>
+# Contributor: Callan Barrett <wizzomafizzo at gmail.com>
+# Contributor: Christian Schmidt <xmucknertx at googlemail.com>
+# Contributor: Sebastian Sareyko <public at nooms.de>
+
+pkgname=angband
+pkgver=4.0.2
+pkgrel=2
+pkgdesc="A roguelike dungeon exploration game based on the writings of JRR Tolkien"
+arch=('i686' 'x86_64')
+url="http://rephial.org/"
+license=('GPL2' 'custom')
+depends=('sdl_image' 'sdl_ttf' 'sdl_mixer' 'ncurses')
+makedepends=('python-docutils')
+source=("http://rephial.org/downloads/${pkgver:0:3}/${pkgname}-${pkgver}.tar.gz")
+
+prepare() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+
+ # Fix detection of ncurses config script for ncurses 6.0
+ sed -i 's/ncursesw5-config/ncursesw6-config/g' acinclude.m4
+}
+
+build() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+
+ ./autogen.sh
+
+ ./configure \
+ --prefix=/usr \
+ --bindir=/usr/bin \
+ --sysconfdir=/usr/share/angband \
+ --with-configpath=/usr/share/angband \
+ --with-libpath=/usr/share/angband \
+ --enable-gtk \
+ --enable-sdl \
+ --enable-sdl-mixer
+
+ make
+}
+
+package() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+
+ make DESTDIR="${pkgdir}" install
+
+ rm -f "${pkgdir}/usr/share/angband/*/delete.me"
+ install -Dm644 copying.txt "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
+}
+
+md5sums=('b4c96762281307e69b95114b9b3a6487')
More information about the arch-commits
mailing list