summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authortheooo2022-07-24 01:41:41 +0530
committertheooo2022-07-24 01:41:41 +0530
commit940b11e7dc0b94f7f66f3261795e415060966ecd (patch)
treede5b4fb74ab0f8aa85e393348a7dc29efbe2bf43
downloadaur-940b11e7dc0b94f7f66f3261795e415060966ecd.tar.gz
initial commit
-rw-r--r--.SRCINFO14
-rw-r--r--PKGBUILD16
2 files changed, 30 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..a21e94df36b6
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,14 @@
+pkgbase = yttrim
+ pkgdesc = Trim portions from online videos with ease.
+ pkgver = 1.0
+ pkgrel = 1
+ url = https://codeberg.org/theooo/yttrim
+ arch = any
+ license = custom
+ depends = yt-dlp
+ depends = ffmpeg
+ depends = fzf
+ source = https://codeberg.org/theooo/yttrim/raw/branch/main/yttrim
+ sha512sums = SKIP
+
+pkgname = yttrim
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..cae55d66f435
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,16 @@
+# Maintainer: monsoon
+
+pkgname=yttrim
+pkgver=1.0
+pkgrel=1
+pkgdesc="Trim portions from online videos with ease."
+arch=('any')
+url="https://codeberg.org/theooo/yttrim"
+source=("https://codeberg.org/theooo/yttrim/raw/branch/main/yttrim")
+depends=("yt-dlp" "ffmpeg" "fzf")
+license=("custom")
+sha512sums=("SKIP")
+
+package() {
+ install -Dm755 yttrim "${pkgdir}/usr/bin/yttrim"
+}