30 lines
636 B
Plaintext
30 lines
636 B
Plaintext
|
# 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
|
||
|
}
|