summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorKlaus Alexander Seistrup2022-04-15 10:13:01 +0200
committerKlaus Alexander Seistrup2022-04-15 10:13:01 +0200
commit8cec9c64c9b5ba0943007bb83207e0b9cf2e9704 (patch)
tree128d6b18f8051b928bdcfd39ccf101c55a446a5b
parenta96136ebde02fc4c69583995e16ac4a02b53ce90 (diff)
downloadaur-8cec9c64c9b5ba0943007bb83207e0b9cf2e9704.tar.gz
V1.5.0-2: Include more docs
-rw-r--r--.SRCINFO22
-rw-r--r--PKGBUILD18
2 files changed, 31 insertions, 9 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 3e765618f016..7fc9f0d21c7d 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,23 +1,39 @@
pkgbase = simplex-chat-bin
pkgdesc = A 100% private-by-design chat platform (pre-compiled)
pkgver = 1.5.0
- pkgrel = 1
+ pkgrel = 2
url = https://simplex.chat/
arch = x86_64
license = AGPL3
provides = simplex-chat
conflicts = simplex-chat
source = simplex-chat-1.5.0::https://github.com/simplex-chat/simplex-chat/releases/download/v1.5.0/simplex-chat-ubuntu-20_04-x86-64
- source = https://raw.githubusercontent.com/simplex-chat/simplex-chat/stable/PRIVACY.md
- source = https://raw.githubusercontent.com/simplex-chat/simplex-chat/stable/README.md
+ source = https://raw.githubusercontent.com/simplex-chat/simplex-chat/master/PRIVACY.md
+ source = https://raw.githubusercontent.com/simplex-chat/simplex-chat/master/README.md
+ source = https://raw.githubusercontent.com/simplex-chat/simplex-chat/master/docs/CLI.md
+ source = https://raw.githubusercontent.com/simplex-chat/simplex-chat/master/docs/SIMPLEX.md
+ source = https://raw.githubusercontent.com/simplex-chat/simplex-chat/master/docs/SQL.md
+ source = https://raw.githubusercontent.com/simplex-chat/simplex-chat/master/scripts/message_views.sql
sha256sums = e8192da7daa0c6fe192903c5bd7d6a4a3ba2a106d5dc3ed26befa51e7ed9af2a
sha256sums = SKIP
sha256sums = SKIP
+ sha256sums = SKIP
+ sha256sums = SKIP
+ sha256sums = SKIP
+ sha256sums = SKIP
sha512sums = bf9cdc3214b100ad2614d6ef7f858422889f367dd360e7e63629148f5206ab9e0ee1b5063f95107d97f45d853724704761b64ea637e3b346ee5c8b09b486b715
sha512sums = SKIP
sha512sums = SKIP
+ sha512sums = SKIP
+ sha512sums = SKIP
+ sha512sums = SKIP
+ sha512sums = SKIP
b2sums = fb515c3ba77903e01cc971220df9fc15a3ff41608f20dc7a4c48590ecd3a5ad51df3ebd26b48b4bc27b91f6455714ec5aae8bbb3d9459a145816e4f9a123732c
b2sums = SKIP
b2sums = SKIP
+ b2sums = SKIP
+ b2sums = SKIP
+ b2sums = SKIP
+ b2sums = SKIP
pkgname = simplex-chat-bin
diff --git a/PKGBUILD b/PKGBUILD
index 44b826a109e1..a50346887981 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -4,16 +4,20 @@
pkgname='simplex-chat-bin'
_pkgname="${pkgname%%-bin}"
pkgver=1.5.0
-pkgrel=1
+pkgrel=2
pkgdesc='A 100% private-by-design chat platform (pre-compiled)'
arch=('x86_64')
_platform='ubuntu-20_04-x86-64'
url='https://simplex.chat/'
-_rawurl='https://raw.githubusercontent.com/simplex-chat/simplex-chat/stable'
+_rawurl='https://raw.githubusercontent.com/simplex-chat/simplex-chat/master'
source=(
"$_pkgname-$pkgver::https://github.com/$_pkgname/$_pkgname/releases/download/v$pkgver/$_pkgname-$_platform"
"$_rawurl/PRIVACY.md"
"$_rawurl/README.md"
+ "$_rawurl/docs/CLI.md"
+ "$_rawurl/docs/SIMPLEX.md"
+ "$_rawurl/docs/SQL.md"
+ "$_rawurl/scripts/message_views.sql"
)
license=('AGPL3')
provides=('simplex-chat')
@@ -24,22 +28,24 @@ package() {
install -Dm0755 "$_pkgname-$pkgver" "$pkgdir/usr/bin/$_pkgname"
- for doc in {PRIVACY,README}.md; do
+ for doc in {PRIVACY,README,CLI,SIMPLEX,SQL}.md; do
install -Dm0644 "$doc" "$pkgdir/usr/share/doc/$_pkgname/$doc"
done
+
+ install -Dm0644 message_views.sql "$pkgdir/usr/share/doc/$_pkgname/message_views.sql"
}
sha256sums=(
'e8192da7daa0c6fe192903c5bd7d6a4a3ba2a106d5dc3ed26befa51e7ed9af2a'
- 'SKIP' 'SKIP'
+ 'SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP'
)
sha512sums=(
'bf9cdc3214b100ad2614d6ef7f858422889f367dd360e7e63629148f5206ab9e0ee1b5063f95107d97f45d853724704761b64ea637e3b346ee5c8b09b486b715'
- 'SKIP' 'SKIP'
+ 'SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP'
)
b2sums=(
'fb515c3ba77903e01cc971220df9fc15a3ff41608f20dc7a4c48590ecd3a5ad51df3ebd26b48b4bc27b91f6455714ec5aae8bbb3d9459a145816e4f9a123732c'
- 'SKIP' 'SKIP'
+ 'SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP'
)
# eof