blob: cc2ca60a79f9c33ad9a1ae717b3f6250d6ecceeb (
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
27
28
29
30
31
|
# Maintainer: Simon Perry <aur [at] sanxion [dot] net>
# Contributor: Mike Sampson <mike at sambodata dot com>
# Contributor: Thomas Zervogiannis <tzervo@gmail.com>
# Contributor: Loui Chang <louipc dot ist at gmail company>
# Contributor: rabyte <rabyte__gmail>
pkgname=tintin
pkgver=2.02.51
pkgrel=1
pkgdesc="A console-based MUD client"
arch=('i686' 'x86_64' 'aarch64')
url="http://tintin.sourceforge.net/"
license=('GPL3')
depends=('zlib' 'pcre' 'gnutls')
options=('strip')
source=(https://github.com/scandum/tintin/releases/download/$pkgver/tintin-$pkgver.tar.gz)
sha512sums=('b93cd98b93cbe16f26a6aa1eca76a7b6dec8a33745caaf8bae1894191d5b2e4646caefcae02578b2a0254a025b7626ea012b8891f4ebabc423fdda3a15a8bfc7')
build() {
cd $srcdir/tt/src
sh configure --prefix=/usr --enable-big5
make
}
package() {
cd $srcdir/tt/src
install -m755 -D tt++ $pkgdir/usr/bin/tt++
ln -sf tt++ $pkgdir/usr/bin/tintin
}
|