Skip to content

Commit

Permalink
initial version of the ZNC cap_sasl module
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkusH committed Feb 21, 2012
1 parent 29c1521 commit 0a085b4
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
5 changes: 5 additions & 0 deletions README.rst
Expand Up @@ -11,3 +11,8 @@ cloudraid-native
information (2012-02-11)
- 0.1.1-1: minor fixes (2012-02-11)
- 0.1-1: initial version of the native CloudRAID RAID5 backend (2012-02-05)

znc-cap-sasl
------------

- 0.1-1: initial version of the ZNC cap_sasl module (2012-02-21)
21 changes: 21 additions & 0 deletions znc-cap-sasl/PKGBUILD
@@ -0,0 +1,21 @@
# Maintainer: Markus Holtermann <aur@markusholtermann.eu>
pkgname=znc-cap-sasl
pkgver=0.1
pkgrel=1
pkgdesc='Support SASL authentication when connecting to irc networks which support CAP SASL'
arch=('i686' 'x86_64')
url='https://github.com/mquin/znc/'
license=('GPL')
depends=('znc')
source=("https://raw.github.com/mquin/znc/f4bc8c99aa7e0fb21dc37f2b82c3832a7f28f3b6/cap_sasl.cpp")
md5sums=('3bd1f6a132b66545adf93e2eea8ff1bb')

build() {
cd "$srcdir/"
znc-buildmod cap_sasl.cpp
}

package() {
mkdir -p $pkgdir/usr/lib/znc/
install $srcdir/cap_sasl.so $pkgdir/usr/lib/znc/
}

0 comments on commit 0a085b4

Please sign in to comment.