diff options
| author | Aqua-sama <aqua@iserlohn-fortress.net> | 2018-10-20 17:50:55 +0200 | 
|---|---|---|
| committer | Aqua-sama <aqua@iserlohn-fortress.net> | 2018-10-20 17:54:35 +0200 | 
| commit | b64743e0aeb267cc740d9d8882036eb1ed200443 (patch) | |
| tree | a61959fb6e55903db066e6eac4beac91ddb276c0 /linux | |
| parent | Add cmake manpage target (diff) | |
| download | smolbote-b64743e0aeb267cc740d9d8882036eb1ed200443.tar.xz | |
Fix config.h from regenerating on every build
Diffstat (limited to 'linux')
| -rw-r--r-- | linux/makepkg/PKGBUILD | 8 | 
1 files changed, 6 insertions, 2 deletions
| diff --git a/linux/makepkg/PKGBUILD b/linux/makepkg/PKGBUILD index 005f46a..e3bad77 100644 --- a/linux/makepkg/PKGBUILD +++ b/linux/makepkg/PKGBUILD @@ -18,13 +18,15 @@ license=('GPL3')  depends=('qt5-webengine>=5.11.0' 'boost-libs>=1.66.0')  optdepends=('firejail: launch a sandboxed instance') -makedepends=('git' 'cmake' 'pkg-config' 'asciidoctor') +makedepends=('git' 'cmake' 'pkg-config' 'asciidoctor' 'python')  # this is the central repository  source=("git+https://neueland.iserlohn-fortress.net/gitea/aqua/smolbote.git#branch=master" -        "git+https://github.com/itay-grudev/SingleApplication.git") +        "git+https://github.com/itay-grudev/SingleApplication.git" +        "https://github.com/ulfalizer/Kconfiglib.git")  sha512sums=('SKIP' +            'SKIP'              'SKIP')  #validgpgkeys=(# Aqua-sama <aqua@iserlohn-fortress.net> @@ -36,6 +38,8 @@ prepare() {      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.tools/Kconfiglib.url $srcdir/Kconfiglib +    git submodule update tools/Kconfiglib      _tag="r$(git rev-list --count HEAD)"      _describe="r$(git rev-list --count HEAD)-$(git rev-parse --short HEAD)" | 
