mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
29 lines
1 KiB
Bash
29 lines
1 KiB
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
|
|
# Contributor: Sergej Pupykin <pupykin.s+arch@gmail.com>
|
|
|
|
pkgname=echat
|
|
pkgver=0.04beta1
|
|
pkgrel=1
|
|
pkgdesc="vypress compatible ncurses chat (can work without server)"
|
|
arch=('i686' 'x86_64')
|
|
url="http://echat.deep.perm.ru/"
|
|
license=(GPL)
|
|
depends=(ncurses)
|
|
source=(http://echat.deep.perm.ru/files/echat-$pkgver.tar.gz)
|
|
md5sums=('dda3891d08f04dd266858380d404af15')
|
|
|
|
#
|
|
# see also:
|
|
# url="http://www.vypress.com/products/chat/unix/"
|
|
# url="http://pupykins.googlepages.com/" - contains also improoved version (utf8 and some more features)
|
|
# source=(http://www.vypress.com/ftp/clones/vyc/echat/${pkgname}-${pkgver}.tgz) - actualy not gzipped tar
|
|
#
|
|
|
|
build() {
|
|
cd ${startdir}/src/$pkgname-${pkgver}
|
|
make || return 1
|
|
install -D -m 0755 echat $startdir/pkg/usr/bin/echat && \
|
|
install -D -m 0644 doc/echat.1 $startdir/pkg/usr/man/man1/echat.1 && \
|
|
install -D -m 0644 doc/.echatrc.sample $startdir/pkg/usr/share/echat/dot.echatrc.sample
|
|
}
|