aboutsummaryrefslogtreecommitdiff
path: root/linux/makepkg/PKGBUILD
blob: d0748da4cfc242c0bf7af88ad21af6d3619265fb (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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
# Maintainer: Aqua-sama <aqua@iserlohn-fortress.net>

pkgname=smolbote-git
pkgdesc='Yet another no-frills browser'
pkgver=0
pkgrel=1

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

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

depends=('qt5-webengine>=5.11.0' 'spdlog')
optdepends=('firejail: launch a sandboxed instance')
makedepends=('git' 'meson' 'python-kconfiglib' 'openssl' 'qt5-tools' 'scdoc' 'breakpad-git')

# use git+file:///path/to/your/repo to build from a local repo
source=("git+https://library.iserlohn-fortress.net/aqua/smolbote.git"
        "git+https://github.com/itay-grudev/SingleApplication.git"
        "git+https://github.com/Taywee/args")

sha512sums=('SKIP'
            'SKIP'
            'SKIP')

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

## not-use flags Options
# Enable plugin signing:
#_signPlugins=
# Enable breakpad integraton:
_enableBreakpad=

prepare() {
    cd $srcdir/smolbote

    git submodule init
    git config submodule.3rd-party/SingleApplication/SingleApplication.git.url $srcdir/SingleApplication
    git submodule update 3rd-party/SingleApplication/SingleApplication.git
    git config submodule.3rd-party/args/args.git.url $srcdir/args
    git submodule update 3rd-party/args/args.git
}

pkgver() {
    cd smolbote
    # Without version tag
    echo r$(git rev-list --count HEAD)-$(git rev-parse --short HEAD) | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
}

build() {
    if [ ! -d $srcdir/build ]; then
        mkdir $srcdir/build
    fi
    cd $srcdir/smolbote
    KCONFIG_CONFIG=linux/.config alldefconfig

    # For a list of configureable options, check smolbote/meson_options.txt, or
    # run `meson configure` in $srcdir/build

    # --wrap-mode=nodownload - disable meson from downloading dependency wraps. This will cause it to fail if makedepends are not found by pkg-config or cmake.
    # --buildtype=plain - meson won't add any flags to the command line
    # --prefix=... - install prefix
    # --auto-features=disabled - features should be explicitly enabled
    # b_pie: Build executables as position independent
    # b_lto: Use link time optimization
    meson --buildtype=plain --wrap-mode=nodownload \
        --prefix=/usr/local --auto-features=disabled \
        -Db_pie=true -Db_lto=true \
        -Dmanpage=enabled \
        $srcdir/build

    if [ -n $_enableBreakpad ]; then
        msg2 "Enabling crashhandler"
        meson configure -Ddebug=true -Dcrashhandler=enabled $srcdir/build
        KCONFIG_CONFIG=linux/.config setconfig USEBREAKPAD=y
    fi

    # Run menuconfig
    #KCONFIG_CONFIG=linux/.config menuconfig

    # Build
    ninja -C $srcdir/build
}

package() {
    # Install
    cd $srcdir/build
    DESTDIR="$pkgdir" ninja install

    if [[ -v $_signPlugins ]]; then
    msg "Signing plugins"
    for so in $pkgdir/usr/local/lib/smolbote/plugins/*.so; do
        msg2 "Signed $(basename $so)"
        openssl dgst -sha256 -sign $srcdir/build/privateKey.pem -out $so.sig $so
    done
    fi

    if [[ -v $_enableBreakpad ]]; then
        msg "Installing debug symbols"
        ninja -C $srcdir/build linux/poi.sym
        install -dm644 $pkgdir/usr/local/lib/smolbote/symbols/poi/$(head -n1 linux/poi.sym | awk '{ print $(NF-1) }') 
        install -m644 -t $pkgdir/usr/local/lib/smolbote/symbols/poi/$(head -n1 linux/poi.sym | awk '{ print $(NF-1) }') $srcdir/build/linux/poi.sym
    fi
}