summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorsumoduduk2024-04-05 00:21:20 +0700
committersumoduduk2024-04-05 00:21:20 +0700
commit70b4f77f72b75cb8455fbbd93cd824ad348bd517 (patch)
tree84d6831a716ff182aadabd4ffed60ea43f9ae8cf
downloadaur-70b4f77f72b75cb8455fbbd93cd824ad348bd517.tar.gz
init of terminusdm aur repo
-rw-r--r--.SRCINFO13
-rw-r--r--PKGBUILD19
2 files changed, 32 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..430c944f341d
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,13 @@
+pkgbase = terminusdm-bin
+ pkgdesc = Terminus Download Manager. Download files, resume interrupted downloads, and keep a history of your downloads - within terminal UI.
+ pkgver = 1.0.0
+ pkgrel = 1
+ url = https://github.com/sumoduduk/terminusdm
+ arch = x86_64
+ license = GPL-3.0-or-later
+ provides = terminusdm
+ conflicts = terminusdm
+ source = https://github.com/sumoduduk/terminusdm/releases/download/v1.0.0/terminusdm-1.0.0-x86_64.tar.gz
+ sha256sums = 8450df832804290d48bb678ef16b16e5be1cfbeb3310ecdd5d0e3c0038f48f5b
+
+pkgname = terminusdm-bin
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..881b5574deae
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,19 @@
+# Maintainer: Iqbal Abdurachman <email@abdurachmaniqbal.my.id>
+#
+# This PKGBUILD was generated by `cargo aur`: https://crates.io/crates/cargo-aur
+
+pkgname=terminusdm-bin
+pkgver=1.0.0
+pkgrel=1
+pkgdesc="Terminus Download Manager. Download files, resume interrupted downloads, and keep a history of your downloads - within terminal UI. "
+url="https://github.com/sumoduduk/terminusdm"
+license=("GPL-3.0-or-later")
+arch=("x86_64")
+provides=("terminusdm")
+conflicts=("terminusdm")
+source=("https://github.com/sumoduduk/terminusdm/releases/download/v$pkgver/terminusdm-$pkgver-x86_64.tar.gz")
+sha256sums=("8450df832804290d48bb678ef16b16e5be1cfbeb3310ecdd5d0e3c0038f48f5b")
+
+package() {
+ install -Dm755 terminusdm -t "$pkgdir/usr/bin"
+}