updated on Mon Jan 23 12:00:23 UTC 2012
[aur-mirror.git] / bitchx-svn / PKGBUILD
blob4537a35974d9ffcc4e9885cac17a9f3780937903
1 # Contributor: wodim <neikokz@gmail.com>
3 pkgname=bitchx-svn
4 pkgver=1
5 pkgrel=0
6 pkgdesc="Open source IRC client, considered to be the most popular ircII-based IRC client"
7 arch=('i686', 'x86_64')
8 url="http://sourceforge.net/projects/bitchx/"
9 license="GPL2"
10 depends=('ncurses')
11 makedepends=('subversion')
12 conflicts=('ircii-pana')
13 provides=()
14 source=()
15 md5sums=()
17 _svntrunk=https://bitchx.svn.sourceforge.net/svnroot/bitchx/trunk
18 _svnmod=bitchx
20 build() {
21         cd $startdir/src
23         # Get Latest Source Code
24         svn co $_svntrunk --config-dir ./ -r $pkgver $_svnmod
26         msg "SVN checkout done or server timeout"
27         msg "Starting make..."
29         # Install
30         cd $_svnmod
31         ./configure --prefix=$startdir/pkg/usr || return 1
32         make || return 1
33         make install || return 1