opt/xchat/Pkgfile

28 lines
637 B
Plaintext
Raw Normal View History

2006-02-23 16:26:10 +01:00
# Description: GTK+ based IRC client
2006-09-17 21:03:05 +02:00
# URL: http://www.xchat.org/
# Maintainer: Matt Housh, jaeger at crux dot nu
# Depends on: openssl, gtk, perl
2006-02-23 16:26:10 +01:00
name=xchat
2007-01-04 15:56:11 +01:00
version=2.8.0
2006-02-23 16:26:10 +01:00
release=1
2007-01-04 15:56:11 +01:00
source=(http://www.xchat.org/files/source/2.8/$name-$version.tar.bz2 \
http://www.xchat.org/files/source/2.8/patches/xc280-fix-back.diff)
2006-02-23 16:26:10 +01:00
build() {
2006-09-17 21:03:05 +02:00
cd $name-$version
2007-01-04 15:56:11 +01:00
patch -p1 -i $SRC/xc280-fix-back.diff
2006-09-17 21:03:05 +02:00
./configure --prefix=/usr \
2006-02-23 16:26:10 +01:00
--enable-openssl \
--enable-perl \
--enable-ipv6 \
--disable-gnome \
--disable-textfe \
--disable-python \
--disable-tcl \
--disable-nls
2006-09-17 21:03:05 +02:00
make
make DESTDIR=$PKG install
rm -rf $PKG/usr/{etc,share}
2006-02-23 16:26:10 +01:00
}