summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 2e46f878190d77bbd44ba7b9ea84964dace47b61 (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
# Maintainer: Vinson Chuong <vinsonchuong@gmail.com>
pkgname=prototypical
pkgver=0.0.7
pkgrel=1
pkgdesc=A\ starting\ point\ for\ a\ project
arch=(any)
url=https://github.com/vinsonchuong/prototypical
license=(MIT)
depends=(
	bash-common-environment
	bash-common-parse-options
	postgresql
	perl
	ruby
	nodejs
	npm
)
optdepends=(hub)
makedepends=(clidoc)
checkdepends=(
	bats-git
	git
)
source=(https://github.com/vinsonchuong/prototypical/archive/v0.0.7-1.tar.gz)

md5sums=("SKIP")
build () 
{ 
    cd "${srcdir}/${pkgname}-${pkgver}-${pkgrel}";
    clidoc doc/*.md
}
check () 
{ 
    true
}
package () 
{ 
    cd "${srcdir}/${pkgname}-${pkgver}-${pkgrel}";
    [[ -d 'bin' ]] && install -Dm755 -t "${pkgdir}/usr/bin" bin/*;
    if [[ -d 'lib' ]]; then
        for file in $(find 'lib' -type 'f');
        do
            install -D -m "$(stat -c '%a' "$file")" "$file" "${pkgdir}/usr/lib/${pkgname}/${file#'lib/'}";
        done;
    fi;
    [[ -d 'help' ]] && install -Dm644 -t "${pkgdir}/usr/share/${pkgname}/help" help/*;
    [[ -f 'README.md' ]] && install -Dm644 -t "${pkgdir}/usr/share/doc/${pkgname}" 'README.md';
    [[ -d 'doc' ]] && install -Dm644 -t "${pkgdir}/usr/share/doc/${pkgname}/doc" doc/*.md;
    [[ -f 'LICENSE' ]] && install -Dm644 -t "${pkgdir}/usr/share/licenses/${pkgname}" 'LICENSE';
    [[ -d 'man' ]] && install -Dm644 -t "${pkgdir}/usr/share/man/man1" man/*
}