summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorsulchz2019-09-10 13:25:05 +0100
committersulchz2019-09-10 13:25:05 +0100
commit764812d8ecd151ad8948f0653e3dbcfbf46b9497 (patch)
tree2b6b045c5a2650aec1e270f832abca7ee50bb9ae
downloadaur-764812d8ecd151ad8948f0653e3dbcfbf46b9497.tar.gz
text changes
-rw-r--r--.SRCINFO16
-rw-r--r--PKGBUILD17
2 files changed, 33 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..8b1e7c389b3d
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,16 @@
+pkgbase = cropper-git
+ pkgdesc = A TUI to trim video files within a specified range given start and end times.
+ pkgver = 1.0
+ pkgrel = 1
+ url = https://github.com/sulchz/cropper/
+ arch = any
+ license = unknown
+ makedepends = git
+ depends = dateutils
+ depends = ffmpeg
+ depends = libnewt
+ source = git://github.com/sulchz/cropper.git
+ sha256sums = SKIP
+
+pkgname = cropper-git
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..6fba9251f78e
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,17 @@
+# Maintainer: Mirza Baig <mirzabaig@protonmail.com>
+pkgname=cropper-git
+pkgver=1.0
+pkgrel=1
+pkgdesc="A TUI to trim video files within a specified range given start and end times."
+arch=('any')
+url="https://github.com/sulchz/cropper/"
+license=('unknown')
+depends=('dateutils' 'ffmpeg' 'libnewt')
+makedepends=('git')
+source=('git://github.com/sulchz/cropper.git')
+sha256sums=('SKIP')
+
+package() {
+ cd "$srcdir/${pkgname}-${pkgver}"
+ install -D -m755 "cropper" "$pkgdir/usr/bin/cropper"
+}