diff --git a/trunk/PKGBUILD b/trunk/PKGBUILD index 8310f5a..08a2c02 100644 --- a/trunk/PKGBUILD +++ b/trunk/PKGBUILD @@ -2,8 +2,8 @@ # Contributor: TingPing pkgname=hexchat -pkgver=2.16.0 -pkgrel=3 +pkgver=2.16.1 +pkgrel=1 pkgdesc='A popular and easy to use graphical IRC (chat) client' arch=('x86_64') url='https://hexchat.github.io/' diff --git a/x86_64/community-testing/PKGBUILD b/x86_64/community-testing/PKGBUILD new file mode 100644 index 0000000..08a2c02 --- /dev/null +++ b/x86_64/community-testing/PKGBUILD @@ -0,0 +1,33 @@ +# Maintainer: Maxime Gauduin +# Contributor: TingPing + +pkgname=hexchat +pkgver=2.16.1 +pkgrel=1 +pkgdesc='A popular and easy to use graphical IRC (chat) client' +arch=('x86_64') +url='https://hexchat.github.io/' +license=('GPL') +depends=('dbus-glib' 'desktop-file-utils' 'gdk-pixbuf2' 'glib2' 'gtk2' + 'libcanberra' 'openssl' 'pango' 'pciutils') +makedepends=('git' 'intltool' 'iso-codes' 'lua' 'meson' 'perl' 'python-cffi') +optdepends=('enchant: Spell check' + 'iso-codes: Display language names instead of codes' + 'lua: Lua plugin' + 'perl: Perl plugin' + 'python-cffi: Python plugin') +source=("git+https://github.com/hexchat/hexchat.git#tag=v${pkgver}") +sha256sums=('SKIP') + +build() { + artix-meson hexchat build \ + -Dwith-lua='lua' \ + -Dtext-frontend='true' + ninja -C build +} + +package() { + DESTDIR="${pkgdir}" ninja -C build install +} + +# vim: ts=2 sw=2 et: