summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 5c2a6cab9d3f908bbe0283b8e74e53aeb3d24719 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Original Maintainer: Evan McCarthy <evan@mccarthy.mn>
# Maintainer: neko <hi@neko.vg>

pkgname=pounce
pkgver=2.4
pkgrel=1
pkgdesc='A a multi-client, TLS-only IRC bouncer using a multiple-consumer ring buffer and the IRCv3.2 server-time extension to communicate with clients.'
arch=('x86_64')
url="https://git.causal.agency/${pkgname}/"
license=('GPL3')
depends=('libretls')
source=("https://git.causal.agency/${pkgname}/snapshot/${pkgname}-${pkgver}.tar.gz")
md5sums=('3d7f95545b8b3fad435aa93d684e11be')

build() {
      cd "${pkgname}-${pkgver}"
      ./configure --prefix=/usr
      make all
}

package() {
      cd "${pkgname}-${pkgver}"
          make DESTDIR="$pkgdir/" install
}