blob: ba9df3ea6e91bcc262ee713186a27bc9ea04b034 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Maintainer: ngn13 <ngn13proton@proton.me>
pkgname="linux-video-viewer"
pkgver=r7.8799135
pkgrel=1
pkgdesc="Opens any video as an MPV"
arch=("x86_64")
url="https://github.com/ByCh4n-Group/Linux-Video-Viewer"
license=("GPL3")
# depends=("yad" "mpv")
depends=()
makedepends=("git")
source=("${pkgname}::git+https://github.com/ByCh4n-Group/Linux-Video-Viewer.git")
sha256sums=("SKIP")
pkgver() {
cd "$pkgname"
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
package() {
cd "$pkgname"
install -Dm755 "Linux Video Viewer.sh" "$pkgdir/usr/bin/lvv"
}
|