# Maintainer: Klaus Alexander Seistrup # -*- sh -*- pkgname='simplex-chat-bin' _pkgname="${pkgname%%-bin}" pkgver=4.5.2 pkgrel=1 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/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') depends=( 'gmp' 'openssl-1.1' 'zlib' ) provides=('simplex-chat') conflicts=('simplex-chat') package() { cd "$srcdir" || exit 1 install -Dm0755 "$_pkgname-$pkgver" "$pkgdir/usr/bin/$_pkgname" install -Dm0644 message_views.sql "$pkgdir/usr/share/doc/$_pkgname/message_views.sql" install -m0644 {PRIVACY,README,CLI,SIMPLEX,SQL}.md "$pkgdir/usr/share/doc/$_pkgname/" } sha256sums=( 'ef76c282ed40c367862f6ee4bf9891862b292c947b04908b6e22beb2ae434a6d' 'SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP' ) sha512sums=( 'c99319c92bae7c6e1ee651d4caa327ba941e8b8452e18a01fc38da56730b778b5643d561f95d09d66501d30057617fa4f2eb577eab4a7add94917687788e7e9e' 'SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP' ) b2sums=( '68f8107ba98cf2bff6c2f02c268942748a2a3b8414055e9ffc0801911c820cec383ae205e0098f1839fabf6c938172ce53bcf1ac6c745fefe8d211ead9650fa6' 'SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP' ) # eof