c7134e7919
* Add PKGBUILD * This is a basic implementation that works. * I know what I am doing. Trust me. * Made flatpak optional and code cleanup * fixed issue with useless error msg --------- Co-authored-by: FUH22860 <101731147+FUH22860@users.noreply.github.com>
22 lines
533 B
Bash
22 lines
533 B
Bash
# Maintainer: AustrianToast <rene dot fuhry at gmail dot com>
|
|
pkgname=update-git
|
|
pkgver=1.4
|
|
pkgrel=1
|
|
pkgdesc="Update script for Arch linux written in bash"
|
|
arch=('any')
|
|
url="https://github.com/AustrianToast/update"
|
|
license=('GPL3')
|
|
provides=(update)
|
|
depends=('bash')
|
|
makedepends=('git')
|
|
optdepends=('yay' 'paru' 'pacaur' 'pikaur' 'aura' 'flatpak')
|
|
home=${HOME}
|
|
backup=(${home#/}/.config/update.conf)
|
|
source=("$pkgname::git+https://github.com/AustrianToast/update.git")
|
|
md5sums=('SKIP')
|
|
|
|
package() {
|
|
cd "$pkgname"
|
|
make install
|
|
}
|