opt/xchat/Pkgfile

28 lines
652 B
Plaintext
Raw Normal View History

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-07-10 20:18:57 -05:00
version=2.8.4
2007-04-28 13:43:59 -05:00
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}
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
}