blob: efd50ad07ecaaf2d106b780d95fa50313881e74b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#Maintainer: Bhoppi Chaw <bhoppi#outlook,com>
pkgname=ffhevc
pkgver=4.3.2
pkgrel=1
pkgdesc='a small yet quite capable shell script for encoding video files to the H.265/HEVC video format using ffmpeg and libx265.'
arch=(any)
url='https://ffhevc.teambelgium.net/'
license=(GPL2)
depends=(ffmpeg bc)
optdepends=(
'mplayer: for crop preview only'
'gpac: for mp4/mov cover art only'
)
source=("https://downloads.sourceforge.net/project/$pkgname/$pkgname-$pkgver.tar.gz")
sha256sums=('87c52a6f8035a8f26886d9f6abe6a94326137cfa907ef99763a9d446d7b1f5fb')
package() {
cd $pkgname-$pkgver
make install PREFIX="$pkgdir"/usr
}
|