blob: 94724ca9e47da805c0fcbcb773aae2079580597d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Maintainer: Sergey Kovalenko <seryoga.engineering@gmail.com>
pkgname=simple-system-update
pkgver=1.0.6
pkgrel=2
pkgdesc="One-click update button for Linux users"
arch=('any')
url="https://github.com/SeryogaBrigada/SimpleSystemUpdate"
license=('MIT')
depends=('curl'
'jq')
source=("$pkgname-$pkgver.tar.gz::https://github.com/SeryogaBrigada/SimpleSystemUpdate/archive/refs/tags/v$pkgver.tar.gz")
sha512sums=('604ecbf26491baa61b5fb7f563552027c50e93a67c4db753f391b84a9925d51acca05f9b4014e402d25dabd311c51b2dcc86e190885376516184855437f74221')
package() {
cd "SimpleSystemUpdate-$pkgver"
# Install files
install -Dm755 simple-system-update "$pkgdir/usr/bin/simple-system-update"
install -Dm644 com.github.seryogabrigada.SimpleSystemUpdate.desktop "$pkgdir/usr/share/applications/com.github.seryogabrigada.SimpleSystemUpdate.desktop"
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}
|