Date: Wednesday, November 26, 2014 @ 09:13:21 Author: alucryd Revision: 123130
upgpkg: hexchat 2.10.2-1 Modified: hexchat/trunk/PKGBUILD ----------+ PKGBUILD | 26 +++++++++++++++----------- 1 file changed, 15 insertions(+), 11 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2014-11-26 06:18:24 UTC (rev 123129) +++ PKGBUILD 2014-11-26 08:13:21 UTC (rev 123130) @@ -1,38 +1,42 @@ # $Id$ -# Maintainer: Maxime Gauduin <[email protected]> +# Maintainer: Maxime Gauduin <[email protected]> # Contributor: TingPing <[email protected]> pkgname=hexchat -pkgver=2.10.1 +pkgver=2.10.2 pkgrel=1 pkgdesc='A popular and easy to use graphical IRC (chat) client' arch=('i686' 'x86_64') 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' 'python: Python plugin') -install="${pkgname}.install" -source=("http://dl.hexchat.net/${pkgname}/${pkgname}-${pkgver}.tar.xz") -sha256sums=('ffccee6a3470d2f9539e75bd0dd2e3f35c65737004cb02e6d2106c1d5dcde9a9') +install='hexchat.install' +source=("http://dl.hexchat.net/hexchat/hexchat-${pkgver}.tar.xz") +sha256sums=('87ebf365c576656fa3f23f51d319b3a6d279e4a932f2f8961d891dd5a5e1b52c') prepare() { - cd ${pkgname}-${pkgver} + cd hexchat-${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 } build() { - cd ${pkgname}-${pkgver} + cd hexchat-${pkgver} - ./configure --prefix='/usr' --enable-{perl,python='python3.4',textfe} + ./configure \ + --prefix='/usr' \ + --enable-python='python3' \ + --enable-textfe make } package() { - cd ${pkgname}-${pkgver} + cd hexchat-${pkgver} make DESTDIR="${pkgdir}" install }
