summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 9c0fcb5f64172f987d1b6e8983056415741746a8 (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
# Maintainer: doragasu: doragasu <yawn> hotmail <roll> com

_basename=vlc-htsp-plugin
pkgname=${_basename}-git
pkgver=r147
pkgrel=1
pkgdesc="The HTSP VLC plugin allows VLC to act as a standalone Tvheadend client."
arch=('i686' 'x86_64')
url="https://github.com/BtbN/vlc-htsp-plugin/"
license=('GPL2')
depends=('vlc')
conflicts=("$_basename")
provides=("$_basename")

source=("git+https://github.com/BtbN/${_basename}.git")
md5sums=('SKIP')

build() {
	# Just build...
	cd "${_basename}"
	make
}

package() {
	# ... and install
	cd "${_basename}"
	DESTDIR=${pkgdir} make install
}