83 lines
2.7 KiB
Bash
83 lines
2.7 KiB
Bash
# Maintainer: George Rawlinson <grawlinson@archlinux.org>
|
|
|
|
pkgname=hound
|
|
pkgver=0.4.0
|
|
pkgrel=1
|
|
pkgdesc="Lightning fast code searching made easy"
|
|
arch=('x86_64')
|
|
url="https://github.com/hound-search/hound"
|
|
license=('MIT')
|
|
depends=('glibc' 'git')
|
|
makedepends=('go') # no need for npm as the UI is pre-compiled
|
|
optdepends=(
|
|
'bzr: for bazaar repositories'
|
|
'mercurial: for mercurial repositories'
|
|
'svn: for subversion repositories'
|
|
)
|
|
source=(
|
|
"$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz"
|
|
'systemd.service'
|
|
'sysusers.conf'
|
|
'tmpfiles.conf'
|
|
)
|
|
sha512sums=('5f72d63269f6ed548abe36a9736a72eadaf8e5149f8190648bfe9f64367084252e4f509321622e4f2ceb14baf03872a7db339aab75266c2d5a40577ab1fbd427'
|
|
'341e423b1572dea500e9f914ef9bb9dfba7fc19a1cdba0d92e0ba5cf021150bda4322981920902f1ffcade222f26df808fafd681d29841b4892e43af1bd2ec1f'
|
|
'f683d969f29a84251ef00aa8e1d713a3331756530ef50a3ad738baf15956e5e2b83c8f1611a9e8e8a1c3161c17d375fde54fb42c451849b4578c6a7342226121'
|
|
'9a26a065237d3edd2f09d399ad1999276304db71398a7737b846a5e70eb0740baab4bdd56dfb225060c3ca995f4c13db9cfec1aebe1825473a6299484bdac5b9')
|
|
b2sums=('eec71fbd4716848901d55db743a81971c2b595330b5a86ed78d0142a9bf42df8c12da196991019d671ad84fa63a746b05bf681f178e166dc0ea10650ee32e4bc'
|
|
'09ba5894d734ae51126e515192e307b7ece3c5a6def93f5218b445c146e5081c6094f86449eadb724517c09c5f5b8d309b1bfea15b6c402a6b31b9c7366c3198'
|
|
'cc66b8408c35c73911fd01c1c4137401ea223db828085e8750f25f4f41f42c2eda3f3fc5a0b3f64e08495ad4a6367a0ff35b132c924f396bfbe4da47899c6edd'
|
|
'509003822d9bd826b5921d52483c79a5275b1da121e6f88bf66a644681c2a76a7abac5cf8241a094100c164f32e510da04b9f6037cf5e0910c98b062c68742e5')
|
|
|
|
prepare() {
|
|
cd "$pkgname-$pkgver"
|
|
|
|
# create directory for build output
|
|
mkdir build
|
|
|
|
# download dependencies
|
|
go mod vendor
|
|
}
|
|
|
|
build() {
|
|
cd "$pkgname-$pkgver"
|
|
|
|
# set Go flags
|
|
export CGO_CPPFLAGS="${CPPFLAGS}"
|
|
export CGO_CFLAGS="${CFLAGS}"
|
|
export CGO_CXXFLAGS="${CXXFLAGS}"
|
|
|
|
go build -v \
|
|
-trimpath \
|
|
-buildmode=pie \
|
|
-mod=vendor \
|
|
-modcacherw \
|
|
-ldflags "-linkmode external -extldflags \"${LDFLAGS}\"" \
|
|
-o build \
|
|
./cmds/...
|
|
}
|
|
|
|
check() {
|
|
cd "$pkgname-$pkgver"
|
|
go test -v ./...
|
|
}
|
|
|
|
package() {
|
|
# systemd integration
|
|
install -vDm644 systemd.service "$pkgdir/usr/lib/systemd/system/$pkgname.service"
|
|
install -vDm644 sysusers.conf "$pkgdir/usr/lib/sysusers.d/$pkgname.conf"
|
|
install -vDm644 tmpfiles.conf "$pkgdir/usr/lib/tmpfiles.d/$pkgname.conf"
|
|
|
|
cd "$pkgname-$pkgver"
|
|
|
|
# binary
|
|
install -vDm755 -t "$pkgdir/usr/bin" build/*
|
|
|
|
# license
|
|
install -vDm644 -t "$pkgdir/usr/share/licenses/$pkgname" LICENSE
|
|
|
|
# documentation
|
|
install -vDm644 -t "$pkgdir/usr/share/doc/$pkgname" \
|
|
CONTRIBUTING.md README.md config-example.json default-config.json docs/*
|
|
}
|
|
|