Package Details: ttyvideo 0.0.1-2

Git Clone URL: https://aur.archlinux.org/ttyvideo.git (read-only, click to copy)
Package Base: ttyvideo
Description: Play video in the terminal
Upstream URL: https://github.com/jamesthoughton/ttyvideo
Licenses: MIT
Submitter: jhoughton
Maintainer: jhoughton
Last Packager: jhoughton
Votes: 0
Popularity: 0.000000
First Submitted: 2017-06-29 17:11 (UTC)
Last Updated: 2017-06-29 18:08 (UTC)

Required by (0)

Sources (1)

Latest Comments

twa022 commented on 2017-06-29 17:30 (UTC)

PKGBUILD has some issues, here's a working one. Only PKGBUILD and .SRCINFO need to be included, git rm the rest. pkgname=ttyvideo pkgver=0.0.1 pkgrel=2 pkgdesc="Play video in the terminal" arch=('i686' 'x86_64') license=('MIT') depends=('opencv' 'gst-plugins-base') makedepends=('cmake') source=("${pkgname}-${pkgver}.tar.gz::https://github.com/jamesthoughton/${pkgname}/archive/${pkgver}.tar.gz") url='https://github.com/jamesthoughton/ttyvideo' sha256sums=('ecceca05dcfd94cadd0f17f58e3e98a93f5ee7ffe70a72e6935edf5e4a73fcc2') build() { cd "${pkgname}-${pkgver}" cmake . -DCMAKE_INSTALL_PREFIX=/usr make } package() { cd "${pkgname}-${pkgver}" make DESTDIR="${pkgdir}" install }