blob: 054506276b7a38e96f865435969a9e4a5fac2a3d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#Maintainer: Bhoppi Chaw <bhoppi#outlook,com>
pkgname=ffhevc
pkgver=3.5.1
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)
source=("https://downloads.sourceforge.net/project/$pkgname/$pkgname-$pkgver.tar.gz")
sha256sums=('68773d191d0636eedc982cf1c6623d8afe9d1f3f23d30531a600b67fd2b51a47')
package()
{
cd $pkgname-$pkgver
make install PREFIX="$pkgdir"/usr
}
|