From 4c9a30d97903e3a55aa575b1f4eac7bd1cbb9516 Mon Sep 17 00:00:00 2001 From: Fuxino Date: Mon, 16 Sep 2019 19:40:35 +0200 Subject: [PATCH] Update PKGBUILD --- PKGBUILD | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/PKGBUILD b/PKGBUILD index 9912473..b8c1932 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -4,20 +4,18 @@ # pkgname=simple-backup -pkgver=1.4.r0.g97d1a14 +pkgver=2.0.0.r3.gc61c704 pkgrel=1 pkgdesc='Simple backup script that uses rsync to copy files' arch=('any') -url="https://github.com/Fuxino" +url="https://github.com/Fuxino/simple-backup.git" license=('GPL3') makedepends=('git') depends=('python3' 'rsync') install=${pkgname}.install -source=(git+https://github.com/Fuxino/${pkgname}.git - config) -sha256sums=('SKIP' - '22ef4a0e9356daf3cabe93299c7a04b6b7283b14e6f2c07d939e24027eedf144') +source=(git+https://github.com/Fuxino/${pkgname}.git) +sha256sums=('SKIP') pkgver() { @@ -27,6 +25,6 @@ pkgver() package() { - install -Dm755 "${srcdir}/${pkgname}/${pkgname}" "${pkgdir}/usr/bin/${pkgname}" - install -Dm644 "${srcdir}/config" "${pkgdir}/etc/${pkgname}/config" + install -Dm755 "${srcdir}/${pkgname}/${pkgname}.py" "${pkgdir}/usr/bin/${pkgname}" + install -Dm644 "${srcdir}/${pkgname}/config" "${pkgdir}/etc/${pkgname}/config" }