2006-02-23 15:26:10 +00:00
|
|
|
# Description: GTK+ based IRC client
|
2006-09-17 19:03:05 +00:00
|
|
|
# URL: http://www.xchat.org/
|
|
|
|
# Maintainer: Matt Housh, jaeger at crux dot nu
|
|
|
|
# Depends on: openssl, gtk, perl
|
2006-02-23 15:26:10 +00:00
|
|
|
|
|
|
|
name=xchat
|
2007-04-28 13:43:59 -05:00
|
|
|
version=2.8.2
|
|
|
|
release=1
|
|
|
|
source=(http://www.xchat.org/files/source/2.8/$name-$version.tar.bz2)
|
2006-02-23 15:26:10 +00:00
|
|
|
|
|
|
|
build() {
|
2006-09-17 19:03:05 +00:00
|
|
|
cd $name-$version
|
|
|
|
./configure --prefix=/usr \
|
2006-02-23 15:26:10 +00:00
|
|
|
--enable-openssl \
|
|
|
|
--enable-perl \
|
|
|
|
--enable-ipv6 \
|
|
|
|
--disable-gnome \
|
|
|
|
--disable-textfe \
|
|
|
|
--disable-python \
|
|
|
|
--disable-tcl \
|
|
|
|
--disable-nls
|
2006-09-17 19:03:05 +00:00
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -rf $PKG/usr/{etc,share}
|
2007-04-01 10:09:33 -05:00
|
|
|
install -D $name.desktop $PKG/usr/share/applications/$name.desktop
|
|
|
|
install -D $name.png $PKG/usr/share/pixmaps/$name.png
|
2006-02-23 15:26:10 +00:00
|
|
|
}
|