4c0305a2e9
CRUX System Team:reiserfsprogs: util-linux UNMAINTAINED:librsvg: gdk-pixbuf gobject-introspection Jose V Beneyto:gftp: openssl readline Jose V Beneyto:imlib2: libpng Jose V Beneyto:libcroco: libxml2 Jose V Beneyto:libgd: libpng Jose V Beneyto:libwnck-gtk3: intltool Jose V Beneyto:libwnck: intltool Jose V Beneyto:pycairo: python Jose V Beneyto:pygobject: python Jose V Beneyto:qt4: libpng Jose V Beneyto:startup-notification: xorg-libsm xorg-libx11 Jose V Beneyto:subversion: apr expat sqlite3 Jose V Beneyto:vorbis-tools: libogg Jose V Beneyto:vte-gtk3: intltool p5-xml-parser xorg-libxdamage Jose V Beneyto:vte: intltool p5-xml-parser Jose V Beneyto:xchat: openssl perl
29 lines
744 B
Plaintext
29 lines
744 B
Plaintext
# Description: GTK+ based IRC client
|
|
# URL: http://www.xchat.org/
|
|
# Maintainer: Jose V Beneyto, sepen at crux dot nu
|
|
# Packager: Simone Rota, sip at crux dot nu
|
|
# Depends on: gtk
|
|
|
|
name=xchat
|
|
version=2.8.8
|
|
release=2
|
|
source=(http://www.xchat.org/files/source/2.8/$name-$version.tar.xz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
sed -i 's|<glib/.*\.h>|<glib.h>|' src/common/{servlist.c,text.c,util.c,xchat.h}
|
|
./configure --prefix=/usr \
|
|
--enable-openssl \
|
|
--enable-perl \
|
|
--enable-ipv6 \
|
|
--disable-textfe \
|
|
--disable-python \
|
|
--disable-tcl \
|
|
--disable-nls
|
|
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
|
|
}
|