blob: 60af62c26d3bb0fc533f2fd67bdf27f2f51284cd (
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
|
# Maintainer: Rafael Dominiquini <rafaeldominiquini at gmail dot com>
# Contributor: ROllerozxa <temporaryemail4meh [gee mail]>
# Contributor: Jay Tauron <jytrn@protonmail.com>
pkgname=s-bin
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="https://github.com/zquestz/s"
license=('MIT')
makedepends=()
options=('!strip' '!emptydirs')
provides=("s")
source=("${pkgname}_${pkgver}.zip::https://github.com/zquestz/s/releases/download/v${pkgver}/s-linux_amd64.zip")
sha256sums=('fa21d337460551376d6f8a0c83e694ca6f7f335b89e8b925ea4e0fd591884c08')
package() {
cd "${srcdir}/s-linux_amd64"
install -Dm775 "s" "${pkgdir}/usr/bin/s"
install -Dm644 "LICENSE" "${pkgdir}/usr/share/licenses/s/LICENSE"
install -Dm644 "README.md" "${pkgdir}/usr/share/doc/s/README.md"
}
|