summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: d0a6b2db612eedcc3b0833db1bb243e954ccee67 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
pkgname=ttydisp-git
pkgver=0.0.1
pkgrel=1
pkgdesc="Play video in the terminal"
arch=('i686' 'x86_64')
license=('MIT')
depends=('ffmpeg')
makedepends=('cmake' 'git')
source=("git+https://github.com/jamesthoughton/ttydisp")
url='https://github.com/jamesthoughton/ttydisp'
sha256sums=('SKIP')

build() {
	cd "${pkgname}"
	cmake . -DCMAKE_INSTALL_PREFIX=/usr
	make
}

package() {
	cd "${pkgname}"
	make DESTDIR="${pkgdir}" install
}