hexchat: initial commit

This commit is contained in:
Danny Rawlins 2013-12-01 20:59:54 +11:00
parent a6fb3c128b
commit 95c75bd161
3 changed files with 72 additions and 0 deletions

42
hexchat/.footprint Normal file
View File

@ -0,0 +1,42 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/hexchat
-rwxr-xr-x root/root usr/bin/hexchat-text
drwxr-xr-x root/root usr/include/
-rw-r--r-- root/root usr/include/hexchat-plugin.h
drwxr-xr-x root/root usr/lib/
drwxr-xr-x root/root usr/lib/hexchat/
drwxr-xr-x root/root usr/lib/hexchat/plugins/
-rwxr-xr-x root/root usr/lib/hexchat/plugins/checksum.la
-rwxr-xr-x root/root usr/lib/hexchat/plugins/checksum.so
-rwxr-xr-x root/root usr/lib/hexchat/plugins/doat.la
-rwxr-xr-x root/root usr/lib/hexchat/plugins/doat.so
-rwxr-xr-x root/root usr/lib/hexchat/plugins/fishlim.la
-rwxr-xr-x root/root usr/lib/hexchat/plugins/fishlim.so
-rwxr-xr-x root/root usr/lib/hexchat/plugins/perl.la
-rwxr-xr-x root/root usr/lib/hexchat/plugins/perl.so
-rwxr-xr-x root/root usr/lib/hexchat/plugins/python.la
-rwxr-xr-x root/root usr/lib/hexchat/plugins/python.so
-rwxr-xr-x root/root usr/lib/hexchat/plugins/sysinfo.la
-rwxr-xr-x root/root usr/lib/hexchat/plugins/sysinfo.so
drwxr-xr-x root/root usr/lib/pkgconfig/
-rw-r--r-- root/root usr/lib/pkgconfig/hexchat-plugin.pc
drwxr-xr-x root/root usr/man/
drwxr-xr-x root/root usr/man/man1/
-rw-r--r-- root/root usr/man/man1/hexchat.1.gz
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/appdata/
-rw-r--r-- root/root usr/share/appdata/hexchat.appdata.xml
drwxr-xr-x root/root usr/share/applications/
-rw-r--r-- root/root usr/share/applications/hexchat.desktop
drwxr-xr-x root/root usr/share/dbus-1/
drwxr-xr-x root/root usr/share/dbus-1/services/
-rw-r--r-- root/root usr/share/dbus-1/services/org.hexchat.service.service
drwxr-xr-x root/root usr/share/icons/
drwxr-xr-x root/root usr/share/icons/hicolor/
drwxr-xr-x root/root usr/share/icons/hicolor/48x48/
drwxr-xr-x root/root usr/share/icons/hicolor/48x48/apps/
-rw-r--r-- root/root usr/share/icons/hicolor/48x48/apps/hexchat.png
drwxr-xr-x root/root usr/share/icons/hicolor/scalable/
drwxr-xr-x root/root usr/share/icons/hicolor/scalable/apps/
-rw-r--r-- root/root usr/share/icons/hicolor/scalable/apps/hexchat.svg

1
hexchat/.md5sum Normal file
View File

@ -0,0 +1 @@
4723f43afc65a973ceddbea0173ff416 hexchat-2.9.6.1.tar.xz

29
hexchat/Pkgfile Normal file
View File

@ -0,0 +1,29 @@
# Description: GTK+ based IRC client.
# URL: http://hexchat.github.io/
# Maintainer: Danny Rawlins, monster dot romster at gmail dot com
# Packager: Danny Rawlins, monster dot romster at gmail dot com
# Depends on: libnotify libsexy pciutils perl xorg-libxdamage xz
# Nice to have: enchant
name=hexchat
version=2.9.6.1
release=1
source=(http://dl.hexchat.net/hexchat/$name-$version.tar.xz)
build() {
cd $name-$version
./configure \
--prefix=/usr \
--mandir=/usr/man \
--enable-python=python2 \
--enable-shm \
--enable-spell=libsexy \
--enable-textfe
make
make DESTDIR=$PKG install
rm -r $PKG/usr/share/locale
}