blob: 79f3d049c62835a06d766031e10b1a796f470ca1 (
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
50
51
52
53
54
55
|
# Maintainer: Timothy Flowers <t_chuck_flowers@yahoo.com>
pkgname=vim-awesome-git
pkgver=0.0.0
pkgrel=2
epoch=
pkgdesc="A CLI for searching, viewing, and installing the vim plugins described at vimawesome.com"
arch=('any')
url="https://github.com/chuck-flowers/vim-awesome-cli"
license=('GPL')
groups=()
depends=(
'bash'
'coreutils'
'curl'
'findutils'
'git'
'jq'
'sed'
'util-linux'
)
makedepends=(
'coreutils'
'gzip'
'make'
'pandoc'
)
checkdepends=()
optdepends=(
'xdg-utils: Opening vimawesome.com pages in the browser'
)
provides=(
'vim-awesome'
)
conflicts=(
'vim-awesome'
)
replaces=()
backup=()
options=()
install=
changelog=
source=("git+https://github.com/chuck-flowers/vim-awesome-cli")
md5sums=('SKIP')
noextract=()
build() {
cd $srcdir/vim-awesome-cli
make all
}
package() {
cd $srcdir/vim-awesome-cli
make PREFIX=$pkgdir/usr/local install
}
|