summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 8cc9e498fc071ec7bb1eb00283971b0b436604ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# Contributor: Jaroslav Lichtblau <tu@dragonlord.cz>

pkgname=sclient
pkgver=0.7.2
pkgrel=5
pkgdesc="A small GTK-based MUD client for X."
arch=('i686' 'x86_64')
url="http://home.swipnet.se/heathen/linux/sclient.htm"
license=('GPL')
depends=('gtk')
makedepends=('patch')
source=(http://home.swipnet.se/heathen/linux/$pkgname-$pkgver.tar.gz \
        gcc34.patch.bz2)

md5sums=('e399bad04fb5837c5be1d9874fbfac32'
         'b50782f37002b6e310f173b8c617c3f6')

build() {
  cd "${srcdir}/$pkgname-$pkgver"

  patch -Np1 -i ${srcdir}/gcc34.patch

  ./configure --prefix=/usr
  make || return 1
  make prefix=${pkgdir}/usr install
}