summaryrefslogtreecommitdiff
path: root/community/qgo/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/qgo/PKGBUILD')
-rw-r--r--community/qgo/PKGBUILD34
1 files changed, 18 insertions, 16 deletions
diff --git a/community/qgo/PKGBUILD b/community/qgo/PKGBUILD
index 595c07c70..88a1c96f0 100644
--- a/community/qgo/PKGBUILD
+++ b/community/qgo/PKGBUILD
@@ -1,34 +1,36 @@
-# $Id: PKGBUILD 56296 2011-10-05 06:31:10Z andrea $
-# Maintainer:
+# $Id: PKGBUILD 64872 2012-02-18 19:23:28Z arodseth $
+# Maintainer: Alexander Rødseth <rodseth@gmail.com>
# Contributor: Douglas Soares de Andrade <dsa@aur.archlinux.org>
pkgname=qgo
pkgver=1.5.4
-_realver=1.5.4-r3
-pkgrel=4
-pkgdesc="A Go client and full featured SGF editor"
-arch=('i686' 'x86_64')
+pkgrel=5
+pkgdesc="Go client and full featured SGF editor"
+arch=('x86_64' 'i686')
url="http://qgo.sourceforge.net/"
license=('GPL')
depends=('qt3' 'libsm')
-source=("http://downloads.sourceforge.net/$pkgname/$pkgname-${_realver}.tar.gz"
+source=("http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver-r3.tar.gz"
'gcc43.patch'
'gcc45.patch')
-md5sums=('f8f9a6288b7854932bb2666a58631988'
- '1e242ff9c3b46bcebfda0d7ae3aef2fa'
- '58de47198a50dedb029acbe28bd3bb1b')
+sha256sums=('ddfb66ada7027b844838895061f266bda03b327e8dfec2ee2782e14748bac104'
+ 'f6ddd28325523e3d5aabac2284334c73114dd823e00bf282aae2646982206e78'
+ '7f94acfe58d75b57d55bab5b296a801d48f54c8e12dfc1556cd1586abebd3580')
build() {
- . /etc/profile.d/qt3.sh
+ cd "$srcdir/$pkgname-$pkgver"
- cd $srcdir/$pkgname-$pkgver
- patch -Np1 -i "${srcdir}"/gcc43.patch
- patch -Np1 -i "${srcdir}"/gcc45.patch
+ . /etc/profile.d/qt3.sh
+ patch -Np1 -i "$srcdir/gcc43.patch"
+ patch -Np1 -i "$srcdir/gcc45.patch"
./configure --prefix=/usr
make
}
package() {
- cd $srcdir/$pkgname-$pkgver
- make DESTDIR=$pkgdir install
+ cd "$srcdir/$pkgname-$pkgver"
+
+ make DESTDIR="$pkgdir" install
}
+
+# vim:set ts=2 sw=2 et: