summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: e964de5d8472553720fcc39feeb1ac5dafd9e53c (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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# Maintainer: Miquel Lionel <lionel at les-miquelots dot net>
# https://aur.archlinux.org/packages/honk-hg/

pkgname=honk-hg
_pkgname=honk
pkgver=1349.47ad620a35db
pkgrel=2
epoch=0
pkgdesc="ActivityPub compatible server with web frontend. Mercurialtip."
arch=("x86_64")
url="https://humungus.tedunangst.com/r/honk"
license=("custom:ISC")
makedepends=("go" "sqlite" "mercurial")
depends=("go" "sqlite")
optdepends=("nginx: for TLS and reverse proxying")
changelog="$pkgname.changelog"
provides=("${pkgname}")
conflicts=("${pkgname}" 'honk')
source=("hg+https://humungus.tedunangst.com/r/honk")
sha512sums=('SKIP')
options=(strip zipman docs)
install="$_pkgname.install"

pkgver() {
    cd honk
    echo $(hg identify -n).$(hg identify -i)
}
    

build() {
    cd "$srcdir/honk"
    make all
}

package() {
   _PKG_HONKDIR="$pkgdir/usr/share/$_pkgname"
   _PKG_DOCDIR="$srcdir/$_pkgname/docs"
   _MANDIR="$pkgdir/usr/share/man/man"

   install -Dm755 "$srcdir/$_pkgname/$_pkgname" -t "$pkgdir/usr/bin"
   install -Dm644 "$srcdir/$_pkgname"/views/* -t "$_PKG_HONKDIR/views/"
   install -Dm644 "$_PKG_DOCDIR"/* -t "$_PKG_HONKDIR/docs/"
   
  for i in {1,3,5,8}; do
      install -Dm644 $_PKG_DOCDIR/honk.$i -t ${_MANDIR}$i/
  done

   install -Dm644 $_PKG_DOCDIR/activitypub.7 ${_MANDIR}7/honk_activitypub.7
   install -Dm644 $_PKG_DOCDIR/hfcs.1 ${_MANDIR}1/honk_hfcs.1
   install -Dm644 $_PKG_DOCDIR/intro.1 ${_MANDIR}1/honk_intro.1
   install -Dm644 $_PKG_DOCDIR/vim.3 ${_MANDIR}3/honk_vim.3


   install -Dm644 "$srcdir/$_pkgname"/LICENSE -t "$pkgdir/usr/share/licenses/$_pkgname"
   install -Dm644 "../$_pkgname.service" -t "$pkgdir/usr/lib/systemd/system/"
}