summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 516f082c1e0335f63ad4db312b9c39de7a43de61 (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
29
30
31
32
33
34
35
# Maintainer: Simon Arjuna Erat (sea), erat.simon@gmail.com
# Contributor: Simon Arjuna Erat (sea), erat.simon@gmail.com

#
#	Variables
#
	# Prj info
	_hkgname=vhs-master
	pkgname=vhs
	pkgdesc="Video Handler Script (VHS) aka ffmpeg-tui"
	license=('GPL3')
	groups=()
	
	# Pkg info
	arch=('any')
	pkgver=2.7.1
	pkgrel=0
	
	# Src info -- As the master branch is used for releases, this is considered 'stable'.
	url="https://github.com/sri-arjuna/vhs"
	source=(https://github.com/sri-arjuna/vhs/archive/master.zip)
md5sums=('0c4659c752381f780b0960707c21c7e2')
	
	# Bld info
	provides=('vhs')
	depends=( 'ffmpeg' )
	# Is there a way to install ffmpeg-full from AUR?
#
#	Functions
#
	package() {
		cd ${srcdir}/${_hkgname}
		./configure --prefix=/usr --chroot=$pkgdir
		./make-install
	}