summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 536fc293dafb7184a4ed4a73a8fdccb08b19789b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
pkgname=ttydisp-git
_pkgname=ttydisp
pkgver=0.0.2
pkgrel=1
pkgdesc="Play video in the terminal"
arch=('i686' 'x86_64')
license=('MIT')
depends=('ffmpeg' 'libvdpau')
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
}