summaryrefslogtreecommitdiffstats
path: root/linhes/qbittorrent-vuetorrent-bin
diff options
context:
space:
mode:
Diffstat (limited to 'linhes/qbittorrent-vuetorrent-bin')
-rw-r--r--linhes/qbittorrent-vuetorrent-bin/.SRCINFO16
-rw-r--r--linhes/qbittorrent-vuetorrent-bin/.gitignore5
-rw-r--r--linhes/qbittorrent-vuetorrent-bin/PKGBUILD30
-rw-r--r--linhes/qbittorrent-vuetorrent-bin/qbittorrent-vuetorrent.install6
4 files changed, 57 insertions, 0 deletions
diff --git a/linhes/qbittorrent-vuetorrent-bin/.SRCINFO b/linhes/qbittorrent-vuetorrent-bin/.SRCINFO
new file mode 100644
index 0000000..67f9a63
--- /dev/null
+++ b/linhes/qbittorrent-vuetorrent-bin/.SRCINFO
@@ -0,0 +1,16 @@
+pkgbase = qbittorrent-vuetorrent-bin
+ pkgdesc = The sleekest looking WebUI for qBittorrent made with Vue.js!
+ pkgver = 2.8.0
+ pkgrel = 1
+ url = https://github.com/WDaan/VueTorrent
+ install = qbittorrent-vuetorrent.install
+ arch = any
+ license = GPL3
+ optdepends = qbittorrent: for use with qbittorrent
+ optdepends = qbittorrent-nox: for use with qbittorrent-nox
+ provides = qbittorrent-vuetorrent
+ conflicts = qbittorrent-vuetorrent
+ source = vuetorrent-2.8.0.zip::https://github.com/WDaan/VueTorrent/releases/download/v2.8.0/vuetorrent.zip
+ sha512sums = 87213f659db3f50e37be214993a86948b3e86c979cc56556322828ca2d4201e12627be4bcf574a107701cef949a83b493c8d2624a2ec44d4c8c44e5862608bf0
+
+pkgname = qbittorrent-vuetorrent-bin
diff --git a/linhes/qbittorrent-vuetorrent-bin/.gitignore b/linhes/qbittorrent-vuetorrent-bin/.gitignore
new file mode 100644
index 0000000..b1557c2
--- /dev/null
+++ b/linhes/qbittorrent-vuetorrent-bin/.gitignore
@@ -0,0 +1,5 @@
+*
+!.gitignore
+!PKGBUILD
+!.SRCINFO
+!qbittorrent-vuetorrent.install
diff --git a/linhes/qbittorrent-vuetorrent-bin/PKGBUILD b/linhes/qbittorrent-vuetorrent-bin/PKGBUILD
new file mode 100644
index 0000000..498f6c8
--- /dev/null
+++ b/linhes/qbittorrent-vuetorrent-bin/PKGBUILD
@@ -0,0 +1,30 @@
+# Maintainer: Francesco Minnocci <ascoli dot minnocci at gmail dot com>
+# Contributor: zoorat <zoorat [at] protonmail [dot] com>
+# Contributor: Falk Höppner <falk hoppner se>
+
+pkgname=qbittorrent-vuetorrent-bin
+_pkgname=vuetorrent
+pkgver=2.8.0
+pkgrel=1
+
+pkgdesc='The sleekest looking WebUI for qBittorrent made with Vue.js!'
+arch=('any')
+url='https://github.com/WDaan/VueTorrent'
+license=('GPL3')
+
+provides=("qbittorrent-${_pkgname}")
+conflicts=("qbittorrent-${_pkgname}")
+optdepends=(
+ 'qbittorrent: for use with qbittorrent'
+ 'qbittorrent-nox: for use with qbittorrent-nox'
+)
+install=qbittorrent-vuetorrent.install
+
+source=("${_pkgname}-$pkgver.zip::${url}/releases/download/v$pkgver/${_pkgname}.zip")
+sha512sums=('87213f659db3f50e37be214993a86948b3e86c979cc56556322828ca2d4201e12627be4bcf574a107701cef949a83b493c8d2624a2ec44d4c8c44e5862608bf0')
+
+package() {
+ cd "$srcdir/vuetorrent"
+ find . -type f -exec install -D '{}' "$pkgdir/usr/share/$pkgname/{}" ';'
+}
+# vim:set ts=2 sw=2 et:
diff --git a/linhes/qbittorrent-vuetorrent-bin/qbittorrent-vuetorrent.install b/linhes/qbittorrent-vuetorrent-bin/qbittorrent-vuetorrent.install
new file mode 100644
index 0000000..04af4b9
--- /dev/null
+++ b/linhes/qbittorrent-vuetorrent-bin/qbittorrent-vuetorrent.install
@@ -0,0 +1,6 @@
+post_install() {
+ cat << EOF
+>>> Make sure to enable 'Use alternative Web UI' in qBittorrent under Preferences->Web UI.
+>>> Set 'File location' to /usr/share/qbittorrent-vuetorrent-bin.
+EOF
+}