blob: 1822743a0d1a6b455be494ee6963b41e11c34640 (
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.2.1
pkgrel=1
epoch=
pkgdesc="Imagine is a program that displays images and video in the terminal."
arch=(x86_64)
url="https://github.com/spynets/imagine"
license=('GPL-3.0-or-later')
depends=(ffmpeg)
makedepends=(git gcc)
conflicts=(imagine)
md5sums=()
prepare() {
git clone https://github.com/spynets/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"
}
|