summaryrefslogtreecommitdiff
path: root/libre/hexchat-libre/PKGBUILD
blob: f29f1d5b842958d7ff71bfa86f30ca36d210fe4e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# $Id: PKGBUILD 97065 2013-09-12 08:20:08Z alucryd $
# Maintainer: Maxime Gauduin <alucryd@gmail.com>
# Contributor: TingPing <tingping@tingping.se>
# Maintainer (Parabola): André Silva <emulatorman@lavabit.com>

_pkgname=hexchat
pkgname=hexchat-libre
pkgver=2.9.6
pkgrel=1
pkgdesc="A popular and easy to use graphical IRC (chat) client, without nonfree browser reference (Parabola rebranded)"
arch=('i686' 'x86_64' 'mips64el')
url="http://www.hexchat.org/"
license=('GPL')
depends=('dbus-glib' 'desktop-file-utils' 'hicolor-icon-theme' 'libcanberra' 'libnotify' 'libproxy' 'libsexy' 'pciutils')
makedepends=('perl' 'python')
optdepends=('enchant: Spell check'
            'perl: Perl plugin'
            'python: Python plugin')
options=('!libtool')
install=${_pkgname}.install
replaces=$_pkgname
conflicts=$_pkgname
provides=$_pkgname=$pkgver
source=("http://dl.hexchat.org/hexchat/hexchat-${pkgver}.tar.xz"
        'remove-non-free-suggestion.patch'
        'no-firefox.patch')
sha256sums=('eaefc07867a6e546cd9e19a4ccc976b4736c759ba3f946020eeae3cd6f4684b0'
            '61040cb2a369b1b8801509c88019d68d1ab4c2505b1dfd859de1a4c22503f02d'
            'de338821e1a8790a6fbdba2ce41d323002f51e3ae3e99ee8d815fcf087197e45')

build() {
  cd ${_pkgname}-${pkgver}

# Rebrand to Parabola
  sed -i -e 's#ArchLinux#Parabola GNU/Linux-libre#' plugins/sysinfo/parse.c

# Remove nonfree browser references
  patch -p1 -i "${srcdir}/remove-non-free-suggestion.patch"
  patch -p1 -i "${srcdir}/no-firefox.patch"

  ./configure --prefix='/usr' --enable-{python='python3',shm,spell='libsexy',textfe,xft}
  make
}

package() {
  cd ${_pkgname}-${pkgver}

  make DESTDIR="$pkgdir" install
}

# vim: ts=2 sw=2 et: