summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 081ca9c226574f601a99b2f4ce9ee8d766f55182 (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# Maintainer: George Rawlinson <grawlinson@archlinux.org>
# Contributor: Evan McCarthy <evan@mccarthy.mn>
# Contributor: neko <hi@neko.vg>

pkgname=pounce
pkgver=3.0
pkgrel=1
pkgdesc='A multi-client, TLS-only IRC bouncer'
arch=('x86_64')
url="https://git.causal.agency/pounce"
license=('GPL3')
depends=('libretls' 'libxcrypt')
makedepends=('git')
_commit='1d217a2b9e733a825c3ce4b2dc5b5e5d2ada5d4b'
source=("git+https://git.causal.agency/pounce.git#commit=$_commit")
b2sums=('SKIP')

pkgver() {
  cd pounce

  git describe --tags
}

prepare() {
  cd pounce

  ./configure \
    --prefix=/usr \
    --mandir=/usr/share/man
}
build() {
  cd pounce

  make all
}

package() {
  cd pounce

  make DESTDIR="$pkgdir" install
}