mirror of
https://github.com/SchildiChat/schildichat-desktop.git
synced 2025-03-26 10:07:47 +01:00

pacman target is somewhat broken, so let's do it similarly like the official AUR package for local installs.
26 lines
739 B
Bash
26 lines
739 B
Bash
# Maintainer: su-ex <codeworks@supercable.onl>
|
|
# Maintainer: SpiritCroc <aur@spiritcroc.de>
|
|
# Contributor: David Mehren <david.mehren@udo.edu>
|
|
|
|
pkgname=---appName----git
|
|
_pkgver=---version---
|
|
pkgver=${_pkgver//-/.}
|
|
pkgrel=1
|
|
pkgdesc="SchildiChat is a Matrix client based on Element with a more traditional instant messaging experience."
|
|
arch=('x86_64')
|
|
url="https://schildi.chat"
|
|
license=('Apache')
|
|
depends=('sqlcipher')
|
|
provides=('---appName---')
|
|
conflicts=('---appName---')
|
|
source=("---debName---"
|
|
"---appName---.sh")
|
|
sha256sums=('SKIP'
|
|
'SKIP')
|
|
|
|
package() {
|
|
msg2 "Extracting the data.tar.xz..."
|
|
bsdtar -xf data.tar.xz -C "$pkgdir/"
|
|
install -Dm755 "${srcdir}"/---appName---.sh "${pkgdir}"/usr/bin/---appName---
|
|
}
|