summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorepitron2016-05-01 03:03:10 -0400
committerepitron2016-05-01 03:03:10 -0400
commitd711f7a99cfb6440156f29617f3d0a8ba4991be4 (patch)
treeb5180e6792397d3dc0d3ff62b68c5bc42a57cb31
downloadaur-d711f7a99cfb6440156f29617f3d0a8ba4991be4.tar.gz
First commit
-rw-r--r--.SRCINFO15
-rw-r--r--PKGBUILD18
2 files changed, 33 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..960f552c1ed8
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,15 @@
+# Generated by mksrcinfo v8
+# Sun May 1 07:02:58 UTC 2016
+pkgbase = codecvisa-bin
+ pkgdesc = A tool for inspecting and analyzing raw H264/H265/VP8/VP9/etc video streams (at frame and macroblock levels) for fine tuning encodes.
+ pkgver = 4.36
+ pkgrel = 1
+ url = http://www.codecian.com/
+ arch = i686
+ arch = x86_64
+ license = custom
+ source = http://www.codecian.com/downloads/codecvisa.tar.gz
+ sha256sums = 5fdc91d42f5d02dff6fcb29b02f160b432df58886fdaed7fbc4fc1aa8c83d59d
+
+pkgname = codecvisa-bin
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..1176690327e7
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,18 @@
+# Maintainer: epitron <chris@ill-logic.com>
+pkgname=codecvisa-bin
+pkgver=4.36
+pkgrel=1
+pkgdesc="A tool for inspecting and analyzing raw H264/H265/VP8/VP9/etc video streams (at frame and macroblock levels) for fine tuning encodes."
+url='http://www.codecian.com/'
+license=('custom')
+arch=('i686' 'x86_64')
+source=("http://www.codecian.com/downloads/codecvisa.tar.gz")
+sha256sums=("5fdc91d42f5d02dff6fcb29b02f160b432df58886fdaed7fbc4fc1aa8c83d59d")
+
+package() {
+ install -d $pkgdir/opt
+ cp -r $srcdir/codecvisa $pkgdir/opt
+
+ install -d $pkgdir/usr/bin
+ ln -s ../../opt/codecvisa/codecvisa "$pkgdir"/usr/bin/codecvisa
+}