aboutsummaryrefslogtreecommitdiff
path: root/linux/makepkg/PKGBUILD
blob: c1ba1c2fa60c1d00a07a1febf941bbfc3e0ad4fc (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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
# Maintainer: Aqua-sama <aqua@iserlohn-fortress.net>

pkgname=smolbote-hg
pkgdesc='Yet another no-frills browser'

pkgver=0
pkgrel=1
_tag=""
_describe=""
_commit=""
_branch=""

url="https://neueland.iserlohn-fortress.net/smolbote"

arch=('x86_64')
license=('GPL3')

# -hg replace the old -git package
replaces=('smolbote-git')

depends=('qt5-webengine>=5.11.0' 'boost-libs>=1.66.0')
optdepends=('firejail: launch a sandboxed instance')
makedepends=('git' 'cmake' 'pkg-config' 'go-md2man')

# this is the central repository
source=("git+https://neueland.iserlohn-fortress.net/gitea/aqua/smolbote.git")

sha512sums=('SKIP')
validgpgkeys=(# Aqua-sama <aqua@iserlohn-fortress.net>
              BB1C090188E3E32B375C13FD095DE26BC16D2E98)

prepare() {
    cd smolbote
    _tag=$(git describe --tags --abbrev=0)
    _describe=$(git describe --tags)
    _commit=$(git rev-parse HEAD)
    _branch=$(git rev-parse --abbrev-ref HEAD)
}

pkgver() {
    cd smolbote
    git describe --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
}

build() {
    # generate makefile

    #  option                   default
    # -DQtDeprecatedWarnings    On
    # -DUseLibCpp               Off
    # -DTests                   Off
    # -DPlasma                  Off

    cmake   -DCMAKE_BUILD_TYPE=Release \
            -DCMAKE_INSTALL_PREFIX=$pkgdir/usr/local \
            -DVerTag=$_tag \
            -DVerDescribe=$_describe \
            -DVerCommit=$_commit \
            -DVerBranch=$_branch \
            $srcdir/smolbote

    # Build
    make
}

package() {
    # Install
    make install

    # icon and .desktop
    install -Dm644 "${srcdir}/smolbote/data/poi.svg" "${pkgdir}/usr/share/icons/hicolor/scalable/apps/poi.svg"
    install -Dm644 "${srcdir}/smolbote/linux/poi.desktop" "${pkgdir}/usr/share/applications/poi.desktop"

    # firejail profile
    install -Dm644 "${srcdir}/smolbote/data/poi.profile" "${pkgdir}/usr/local/lib/smolbote/poi.profile"

    msg2 "Install manpage"
    go-md2man -in $srcdir/smolbote/linux/man/smolbote.md -out smolbote.7
    gzip smolbote.7
    install -Dm644 smolbote.7.gz $pkgdir/usr/local/man/man7/smolbote.7.gz
}