blob: 8228f37c35626015dbd5175b0a3987c0ef8a86ae (
plain)
1 # Description: GTK+ based IRC client.
2 # URL: http://hexchat.github.io/
3 # Maintainer: Danny Rawlins, crux at romster dot me
4 # Packager: Danny Rawlins, crux at romster dot me
5 # Depends on: intltool iso-codes libnotify libsexy pciutils xorg-libxdamage xz
6 # Nice to have: enchant
7
8 name=hexchat
9 version=2.10.2
10 release=1
11 source=(http://dl.hexchat.net/hexchat/$name-$version.tar.xz)
12
13 build() {
14 cd $name-$version
15
16 ./configure \
17 --prefix=/usr \
18 --mandir=/usr/man \
19 --enable-python=python2 \
20 --enable-textfe
21
22
23 make
24 make DESTDIR=$PKG install
25
26 rm -r $PKG/usr/share/locale
27 }
|