summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 843d7f5f923ccde7e031aff0c3f88e73d76f01a2 (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
# Maintainer: Ben H <bcherb2@users.noreply.github.com>
pkgname=ffdash-bin
pkgver=0.3.2
pkgrel=1
pkgdesc="VP9 video encoder with live TUI dashboard and hardware acceleration"
arch=('x86_64')
url="https://github.com/bcherb2/ffdash"
license=('MIT')
depends=('ffmpeg')
provides=('ffdash')
conflicts=('ffdash')
source=(
    "ffdash-${pkgver}.tar.gz::https://github.com/bcherb2/ffdash/releases/download/v${pkgver}/ffdash-linux-x86_64.tar.gz"
    "LICENSE-${pkgver}::https://raw.githubusercontent.com/bcherb2/ffdash/v${pkgver}/LICENSE"
)
sha256sums=(
    'b8b7c037133cabf531e0fef42cb8759891b0f242dce2b44d8826ee3afd956bd7'
    'SKIP'
)

package() {
    install -Dm755 "${srcdir}/ffdash" "${pkgdir}/usr/bin/ffdash"
    install -Dm644 "${srcdir}/LICENSE-${pkgver}" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}