diff options
| author | Aqua-sama <aqua@iserlohn-fortress.net> | 2019-10-22 10:35:37 +0300 | 
|---|---|---|
| committer | Aqua-sama <aqua@iserlohn-fortress.net> | 2019-10-22 10:35:37 +0300 | 
| commit | c72b2de3794c7c5100cc8e007b3c199a2f237fe6 (patch) | |
| tree | efa0370529cc128b36c00364d2fc950b1496ec45 /linux | |
| parent | Improve meson.build files (diff) | |
| download | smolbote-c72b2de3794c7c5100cc8e007b3c199a2f237fe6.tar.xz | |
Use github.com/Taywee/args to parse command line
- This adds 3rd-party/args/args.git subrepository
Diffstat (limited to 'linux')
| -rw-r--r-- | linux/makepkg/PKGBUILD | 6 | 
1 files changed, 5 insertions, 1 deletions
| diff --git a/linux/makepkg/PKGBUILD b/linux/makepkg/PKGBUILD index 9a4d13a..4fed183 100644 --- a/linux/makepkg/PKGBUILD +++ b/linux/makepkg/PKGBUILD @@ -18,9 +18,11 @@ makedepends=('git' 'meson' 'boost' 'python-kconfiglib' 'openssl' 'qt5-tools' 'sc  # this is the central repository  source=("git+https://neueland.iserlohn-fortress.net/gitea/aqua/smolbote.git" -        "git+https://github.com/itay-grudev/SingleApplication.git") +        "git+https://github.com/itay-grudev/SingleApplication.git" +        "git+https://github.com/Taywee/args")  sha512sums=('SKIP' +            'SKIP'              'SKIP')  #validgpgkeys=(# Aqua-sama <aqua@iserlohn-fortress.net> @@ -42,6 +44,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.3rd-party/args/args.git.url $srcdir/args +    git submodule update 3rd-party/args/args.git  }  pkgver() { | 
