-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPKGBUILD
45 lines (40 loc) · 778 Bytes
/
PKGBUILD
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
Maintainer: Shravan Asati <dev.shravan@protonmail.com>
pkgname=hydra-go
pkgver=2.2.0
pkgrel=1
epoch=
pkgdesc="hydra is a command line utility for generating language-specific project structures."
arch=(x86_64 i686)
url="https://github.com/shravanasati/hydra.git"
license=('MIT')
groups=()
depends=()
makedepends=(git curl)
checkdepends=()
optdepends=()
provides=()
conflicts=()
replaces=()
backup=()
options=()
install=
changelog=
source=("git+$url")
noextract=()
md5sums=("SKIP")
validpgpkeys=()
prepare() {
cd "${_pkgname}"
printf "2.2.r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
build() {
cd hydra
bash linux_install.sh
}
# check() {
# cd "$pkgname-$pkgver"
# make -k check
# }
package() {
echo "hydra installation is sucessful"
}