mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
25 lines
688 B
Bash
25 lines
688 B
Bash
# Maintainer: Douglas Soares de Andrade <dsa@aur.archlinux.org>
|
|
|
|
pkgname=qgo
|
|
pkgver=1.5.4
|
|
_realver=1.5.4-r2
|
|
pkgrel=3
|
|
pkgdesc="qGo is a Go client and full featured SGF editor."
|
|
arch=('i686' 'x86_64')
|
|
url="http://qgo.sourceforge.net/"
|
|
license=('GPL')
|
|
depends=('qt3' 'libsm')
|
|
source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-${_realver}.tar.gz
|
|
qgo-gcc43-iostream.patch)
|
|
|
|
build() {
|
|
. /etc/profile.d/qt3.sh
|
|
|
|
cd $srcdir/$pkgname-$pkgver
|
|
patch -Np1 -i $srcdir/qgo-gcc43-iostream.patch || return 1
|
|
./configure --prefix=/usr
|
|
make || return 1
|
|
make DESTDIR=$pkgdir install
|
|
}
|
|
md5sums=('5b83bd5ec234beabe48ca17eace3957e'
|
|
'148c470f6426e6d626b3105807b0c006')
|