summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 79a0e043f899c0b80b1cc27e8d1bf48340ec9cb5 (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
# Maintainer: Bardia 'Luviz' Jedi <bardiajedi@gmail.com>

pkgname=html5videoplayer-git
pkgver=r4.d25e2b5
pkgrel=1
pkgdesc="HTML 5 video player. Just a video tag in a html file"
arch=('any')
url="https://github.com/Luviz/html5videoplayer"
license=('MIT')
makedepends=(git)
source=("git+https://github.com/Luviz/html5videoplayer.git")
sha256sums=('SKIP')

pkgver() {
	cd "$srcdir/html5videoplayer"
    ( set -o pipefail
        git describe --long 2>/dev/null | sed 's/\([^-]*-g\)/r\1/;s/-/./g' ||
        printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
    )
}

package() {
	cd "$srcdir/html5videoplayer"

	install -Dm755 html5videoplayer "${pkgdir}/usr/bin/html5videoplayer"
	install -Dm666 video.html "${pkgdir}/usr/share/html5videoplayer/video.html"
	install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/$pkgname/LICENSE"
}