diff options
-rw-r--r-- | libre/hexchat/PKGBUILD | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/libre/hexchat/PKGBUILD b/libre/hexchat/PKGBUILD index f2ecdbfbc..7735029ad 100644 --- a/libre/hexchat/PKGBUILD +++ b/libre/hexchat/PKGBUILD @@ -1,16 +1,17 @@ -# $Id: PKGBUILD 116500 2014-07-28 22:25:29Z alucryd $ +# $Id: PKGBUILD 123130 2014-11-26 08:13:21Z alucryd $ # Maintainer (Arch): Maxime Gauduin <alucryd@gmail.com> # Contributor (Arch): TingPing <tingping@tingping.se> # Maintainer: André Silva <emulatorman@parabola.nu> pkgname=hexchat -pkgver=2.10.1 +pkgver=2.10.2 pkgrel=1.parabola1 pkgdesc='A popular and easy to use graphical IRC (chat) client, without nonfree browser reference (Parabola rebranded)' arch=('i686' 'x86_64' 'mips64el') url='http://hexchat.github.io/' license=('GPL') -depends=('dbus-glib' 'desktop-file-utils' 'gtk2' 'libcanberra' 'libnotify' 'libproxy' 'pciutils') +depends=('dbus-glib' 'desktop-file-utils' 'gtk2' 'libcanberra' 'libnotify' + 'libproxy' 'pciutils') makedepends=('intltool' 'iso-codes' 'perl' 'python') optdepends=('enchant: Spell check' 'perl: Perl plugin' @@ -18,13 +19,13 @@ optdepends=('enchant: Spell check' install="${pkgname}.install" replaces=(${pkgname}-libre) conflicts=(${pkgname}-libre) -source=("http://dl.hexchat.org/${pkgname}/${pkgname}-${pkgver}.tar.xz") -sha256sums=('ffccee6a3470d2f9539e75bd0dd2e3f35c65737004cb02e6d2106c1d5dcde9a9') +source=("http://dl.hexchat.net/${pkgname}/${pkgname}-${pkgver}.tar.xz") +sha256sums=('87ebf365c576656fa3f23f51d319b3a6d279e4a932f2f8961d891dd5a5e1b52c') prepare() { cd ${pkgname}-${pkgver} - sed 's/CFLAGS="$PERL_CFLAGS"/CFLAGS="$PERL_CFLAGS -fuse-ld=gold"/' -i configure +# sed 's/CFLAGS="$PERL_CFLAGS"/CFLAGS="$PERL_CFLAGS -fuse-ld=gold"/' -i configure # Rebrand to Parabola sed -i 's#ArchLinux#Parabola GNU/Linux-libre#' plugins/sysinfo/parse.c @@ -37,7 +38,10 @@ prepare() { build() { cd ${pkgname}-${pkgver} - ./configure --prefix='/usr' --enable-{perl,python='python3.4',textfe} + ./configure \ + --prefix='/usr' \ + --enable-python='python3' \ + --enable-textfe make } |