blob: 583d200ebd3438cbe1d0789e19db5ecd8e373685 (
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
|
# Maintainer: Josh Ellithorpe <quest at mac dot com>
pkgname=s
pkgver=0.7.1
pkgrel=1
pkgdesc="Web search from the terminal. Supports over 50 providers including google, github, and stackoverflow."
arch=('i686' 'x86_64')
url="http://github.com/zquestz/s"
license=('MIT')
makedepends=('go' 'git')
options=('!strip' '!emptydirs')
provides=("s")
source=("https://github.com/zquestz/${pkgname}/archive/v${pkgver}.tar.gz")
sha256sums=('4bddf2ff574b6c1af36929290986b351484ba643725ec0918c3c0c10461e326d')
build() {
mkdir -p "${srcdir}/go/src/github.com/zquestz"
export GOPATH="${srcdir}/go"
export GOBIN="$GOPATH/bin"
mv "$pkgname-$pkgver" "$GOPATH/src/github.com/zquestz/s"
cd "$GOPATH/src/github.com/zquestz/s"
go build .
go clean -modcache
}
package() {
cd "${srcdir}/go/src/github.com/zquestz/s"
install -Dm 775 "s" \
"${pkgdir}/usr/bin/${pkgname}"
install -Dm 644 "LICENSE" \
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
install -Dm644 "README.md" \
"${pkgdir}/usr/share/doc/${pkgname}/README.md"
}
|