summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 15ae37301fe10c01b2aa505f03496cf7fcb705ce (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
#
# Arch Linux PKGBUILD for wg-client
# This builds the latest release tag.
# git HEAD is also well tested.
#
# Maintainer: Gene C <arch@sapience.com>
# Contributor: 
# 
pkgname='wg-client'
pkgdesc='Wireguard linux client (command line and gui)'
_gitname='wg-client'

pkgver=4.2.0
pkgrel=1
url="https://github.com/gene-git/wg-client"

arch=(x86_64)
license=(MIT)

install='wg-client.install'

# To build docs uncommont sphinx/texlive
depends=('python>3.10' 'python-pyqt6' 'hicolor-icon-theme' 'python-psutil' 
         'python-netifaces' 'libcap' 'python-netaddr')
makedepends=('git' 'python-build' 'python-wheel'  'python-installer' 'python-hatch' 'rsync'
             #'python-sphinx' 'python-myst-parser' 'texlive-latexextra'
            )

_mkpkg_depends=('python>minor')
source=("git+https://github.com/gene-git/${_gitname}#tag=${pkgver}")
sha512sums=('SKIP')

touch "Changelog.rst"
changelog="Changelog.rst"

prepare() {
    cd "${_gitname}"

    # To build Docs 
    # uncomment these and sphinx makedepends above
    # --------------
    # echo "Build docs"
    # cd ./Docs
    # make html
    # make latexpdf
}

build() {
    cd "${_gitname}"

    echo 'Building python'
    /usr/bin/rm -f dist/*
    /usr/bin/python -m build --wheel --no-isolation

    echo 'Building C-code'
    cd ./src/wg_client/fix-resolv/
    make
}

package() {
    cd "${_gitname}"
    cp Docs/Changelog.rst ${startdir}
    ./scripts/do-install ${pkgdir}
}
# vim:set ts=4 sts=4 sw=4 et: