Christian Heusel pushed to branch main at Arch Linux / Packaging / Packages /
znc
Commits:
e3ff93c9 by Christian Heusel at 2024-02-28T13:03:26+01:00
upgpkg: 1.9.0-2: add argon2 support
- - - - -
2 changed files:
- .SRCINFO
- PKGBUILD
Changes:
=====================================
.SRCINFO
=====================================
@@ -1,7 +1,7 @@
pkgbase = znc
pkgdesc = An IRC bouncer with modules & scripts support
pkgver = 1.9.0
- pkgrel = 1
+ pkgrel = 2
url = https://wiki.znc.in/
install = znc.install
arch = x86_64
@@ -14,6 +14,7 @@ pkgbase = znc
depends = libsasl
depends = icu
depends = boost-libs
+ depends = argon2
optdepends = tcl: modtcl module
optdepends = python: modpython module & znc-buildmod script
optdepends = perl: modperl module
=====================================
PKGBUILD
=====================================
@@ -6,7 +6,7 @@
pkgname=znc
pkgver=1.9.0
-pkgrel=1
+pkgrel=2
pkgdesc='An IRC bouncer with modules & scripts support'
url='https://wiki.znc.in/'
license=('Apache-2.0')
@@ -15,6 +15,7 @@ depends=(
'libsasl'
'icu'
'boost-libs'
+ 'argon2'
)
makedepends=(
'tcl'
@@ -49,10 +50,11 @@ build() {
cmake ../$pkgname-$pkgver \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_INSTALL_LIBDIR=lib \
- -DWANT_PYTHON=ON \
- -DWANT_PERL=ON \
- -DWANT_TCL=ON \
- -DWANT_SYSTEMD=ON \
+ -DWANT_PYTHON=YES \
+ -DWANT_PERL=YES \
+ -DWANT_TCL=YES \
+ -DWANT_SYSTEMD=YES \
+ -DWANT_ARGON=YES \
-DSYSTEMD_DIR=/usr/lib/systemd/system
make
}
View it on GitLab:
https://gitlab.archlinux.org/archlinux/packaging/packages/znc/-/commit/e3ff93c990a0450c2394dfc911f1d8ae926f79f3
--
View it on GitLab:
https://gitlab.archlinux.org/archlinux/packaging/packages/znc/-/commit/e3ff93c990a0450c2394dfc911f1d8ae926f79f3
You're receiving this email because of your account on gitlab.archlinux.org.