opt/xchat/Pkgfile

34 lines
994 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:53:11 +01:00
version=2.8.0
release=2
2007-01-04 15:53: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 \
http://www.xchat.org/files/source/2.8/patches/xc280-fix-ja.diff \
http://jaeger.morpheus.net/linux/files/$name.desktop \
http://jaeger.morpheus.net/linux/files/$name-dcs.png)
2006-02-23 16:26:10 +01:00
build() {
2006-09-17 21:03:05 +02:00
cd $name-$version
2007-01-04 15:53:11 +01:00
patch -p1 -i $SRC/xc280-fix-back.diff
patch -p1 -i $SRC/xc280-fix-ja.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}
install -D $SRC/$name.desktop $PKG/usr/share/applications/$name.desktop
install -D $SRC/$name-dcs.png $PKG/usr/share/pixmaps/$name-dcs.png
2006-02-23 16:26:10 +01:00
}