summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: cbcc094c32d0b0624f3bc2fb40ad440f21b410ad (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
# Maintainer: Gabriele Fulgaro <gabriele.fulgaro@gmail.com>

_pkgname="vdeplug_agno"

pkgname="$_pkgname-git"
pkgver=r3.1529186
pkgrel=2
pkgdesc="agnostic encryption nested plugin for vdeplug4"
arch=('any')
url="https://github.com/rd235/$_pkgname"
license=('LGPL')
depends=('vdeplug4-git')
makedepends=('git')
provides=("$_pkgname")
conflicts=("$_pkgname")
source=("git+$url.git")
md5sums=('SKIP')

pkgver() {
	cd "$_pkgname"
	printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}

build() {
	cd "$_pkgname"
	autoreconf -if
	./configure --prefix=/usr
	make
}

package() {
	cd "$_pkgname"
	make DESTDIR="$pkgdir/" install
}