summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 80f9927b24f4c23bf90ca8eada3f7ea78e1c8e23 (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.2
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=('16c5821533b3c512b4261bf23414e3e2')

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

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