summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: ffdfb54caff69c1a941a3222ef613e103419e0c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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)
makedepends=(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
}