summarylogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.SRCINFO3
-rw-r--r--.gitignore7
-rw-r--r--PKGBUILD4
3 files changed, 11 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index f46183fc1f61..70e97f993611 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = pika-backup
pkgdesc = Simple backups based on borg
pkgver = 0.1.3
- pkgrel = 1
+ pkgrel = 2
url = https://gitlab.gnome.org/World/pika-backup
arch = x86_64
license = GPL
@@ -9,6 +9,7 @@ pkgbase = pika-backup
makedepends = rust
depends = borg
depends = gtk3
+ depends = python-llfuse
source = https://gitlab.gnome.org/World/pika-backup/-/archive/v0.1.3/pika-backup-v0.1.3.tar.gz
sha256sums = fcbed45d280e55fe2301e82a512a6ee9ccffff832e9e78e35f75573a3c2e5bda
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 000000000000..4dab8d6386e3
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,7 @@
+# Ignore everything
+*
+
+# But not these files...
+!.gitignore
+!PKGBUILD
+!.SRCINFO
diff --git a/PKGBUILD b/PKGBUILD
index c1978b095d73..034ae0e5cd9e 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,12 +1,12 @@
# Maintainer: Mark Wagie <mark dot wagie at tutanota dot com>
pkgname=pika-backup
pkgver=0.1.3
-pkgrel=1
+pkgrel=2
pkgdesc="Simple backups based on borg"
arch=('x86_64')
url="https://gitlab.gnome.org/World/pika-backup"
license=('GPL')
-depends=('borg' 'gtk3')
+depends=('borg' 'gtk3' 'python-llfuse')
makedepends=('meson' 'rust')
source=("$url/-/archive/v$pkgver/$pkgname-v$pkgver.tar.gz")
sha256sums=('fcbed45d280e55fe2301e82a512a6ee9ccffff832e9e78e35f75573a3c2e5bda')