blob: d9dfb94cc58f6ddded9efe2054aae75116935301 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# Maintainer: crolbar <crolbar@crolbar.com>
_pkgname="matm"
pkgname="matm-bin"
pkgver=2.3.1
pkgrel=1
pkgdesc="A tool to watch anime, movies, tv shows and read manga from the comfort of the cli!"
arch=('x86_64')
url="https://github.com/crolbar/matm"
license=('GPL3')
depends=('mpv' 'zathura-cb')
provides=('matm')
conflicts=('matm-git')
optdepends=('vlc: an alternative video player for movies')
source=("https://github.com/crolbar/matm/releases/download/v$pkgver/matm_x86_64-unknown-linux-gnu.tar.gz")
md5sums=('SKIP')
package() {
cd "$srcdir"
install -Dm0755 -t "$pkgdir/usr/bin/" "$_pkgname"
}
|