summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: fdc6bb2f5ba55561e09f0e42a54ba8d03e9385c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# Alfred Roos alfred@stensatter.se
pkgname=imagine-term-git
pkgver=1.0.0
pkgrel=1
epoch=
pkgdesc="Imagine is a program that displays images and video in the terminal."
arch=(x86_64)
url="https://gitlab.com/spynets1/imagine"
license=('GPL-3.0-or-later')
depends=(ffmpeg)
makedepends=(git gcc)
conflicts=(imagine)
md5sums=()

prepare() {
	git clone https://gitlab.com/spynets1/imagine
}

build() {
	cd imagine
	make
}

package() {
	cd imagine
	install -Dm755 ./imagine "$pkgdir/usr/bin/imagine"
	install -Dm655 ./readme.md "$pkgdir/usr/share/doc/imagine-term-images/README"
	install -Dm655 ./LICENSE "$pkgdir/usr/share/licenses/imagine-term-images/LICENSE"
}