summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 709978c8287538d5d65d3f81ecc81acf4269cbea (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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# Maintainer: liminggui <372884399@qq.com>
pkgname=vls
pkgver=0.21
pkgrel=1
epoch=
pkgdesc="slow list subdirectories and files and check file expire"
arch=('i686' 'x86_64')
url="github.com/keminar/vls"
license=('GPL')
groups=()
depends=()
makedepends=('git')
checkdepends=()
optdepends=()
provides=()
conflicts=()
replaces=()
backup=()
options=()
install=
changelog=
source=("git+https://github.com/keminar/${pkgname}.git#tag=v${pkgver}")
noextract=()
md5sums=('SKIP')
validpgpkeys=()

prepare() {
	cd "$pkgname"
}

build() {
	cd "$pkgname"
	aclocal
	autoconf
	autoheader
	automake
	./configure --prefix=/usr
	make
}

check() {
	cd "$pkgname"
	make -k check
}

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