summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 57371903dcfc0e2e829e4762892a40098186a8ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
pkgname=ttyvideo
pkgver='0.0.1'
pkgrel='1'
pkgdesc="ttyvideo displays videos in the terminal."
arch=('any')
license=('MIT')
depends=('opencv', 'gstreamer', 'gst-plugins-base', 'cmake')
source=("https://github.com/jamesthoughton/ttyvideo/archive/0.0.1.tar.gz")
url='https://github.com/jamesthoughton/ttyvideo'
md5sums=('862c8cf756ad896f82654565ffc7f5ad')

build() {
    cd $srcdir/ttyvideo
    cmake .
    make
}

package() {
    cd $srcdir/ttyvideo
    install -Dm 755 ttyvideo $pkgdir/usr/bin/ttyvideo
}