diff options
author | lsf | 2022-10-24 14:15:36 +0200 |
---|---|---|
committer | lsf | 2022-10-24 14:15:36 +0200 |
commit | ffa24b8df1c8143687c6381681889b8e9ca2780a (patch) | |
tree | c862978c7fa29a424a6a8917bf0861f2f4db053d | |
parent | 164db979a964fdf18e3bfd94e859723f2ae3143a (diff) | |
download | aur-ffa24b8df1c8143687c6381681889b8e9ca2780a.tar.gz |
v0.3.1.beta
-rw-r--r-- | .SRCINFO | 6 | ||||
-rw-r--r-- | PKGBUILD | 10 |
2 files changed, 9 insertions, 7 deletions
@@ -1,6 +1,6 @@ pkgbase = briar-desktop pkgdesc = Prototyping the next generation for Briar on desktop devices - pkgver = 0.3.0.beta + pkgver = 0.3.1.beta pkgrel = 1 url = https://code.briarproject.org/briar/briar-desktop arch = x86_64 @@ -11,8 +11,8 @@ pkgbase = briar-desktop makedepends = java-environment=17 depends = java-runtime=17 depends = bash - source = briar-desktop::git+https://code.briarproject.org/briar/briar-desktop.git#tag=0.3.0-beta - source = briar::git+https://code.briarproject.org/briar/briar#commit=2aa39e43ef427ecf47a3e9e7a3e82884a354e56a + source = briar-desktop::git+https://code.briarproject.org/briar/briar-desktop.git#tag=0.3.1-beta + source = briar::git+https://code.briarproject.org/briar/briar.git#commit=2aa39e43ef427ecf47a3e9e7a3e82884a354e56a source = briar16.png source = briar32.png source = briar48.png @@ -1,7 +1,7 @@ pkgname=briar-desktop -pkgver=0.3.0.beta +pkgver=0.3.1.beta pkgrel=1 -_bin_ver=0.3.0 +_bin_ver=0.3.1 _build_type=beta pkgdesc='Prototyping the next generation for Briar on desktop devices' arch=('x86_64' 'aarch64' 'armv7h') @@ -10,7 +10,7 @@ license=('GPL') depends=('java-runtime=17' 'bash') makedepends=('git' 'java-environment=17') source=("${pkgname}::git+https://code.briarproject.org/briar/briar-desktop.git#tag=${_bin_ver}-${_build_type}" - "briar::git+https://code.briarproject.org/briar/briar#commit=2aa39e43ef427ecf47a3e9e7a3e82884a354e56a" + "briar::git+https://code.briarproject.org/briar/briar.git#commit=2aa39e43ef427ecf47a3e9e7a3e82884a354e56a" "briar16.png" "briar32.png" "briar48.png" "briar64.png" "briar128.png" "briar192.png" "${pkgname}.desktop") sha256sums=('SKIP' @@ -39,7 +39,9 @@ prepare() { cd ${pkgname} git submodule init git config submodule.briar.url "$srcdir/briar" - git submodule update --init --recursive + # git submodule--helper update --init --recursive + # https://bugs.archlinux.org/task/76255#comment212136 + git -c protocol.file.allow=always submodule update --init --recursive } build() { |