summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 240cc4fd3ac0288d47597974df9fba49a42e5c06 (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: Raphael Tittel <raphaeltittel@gmail.com>
pkgname=terminalgoogle-git
pkgver=1.00
pkgrel=1
epoch=
pkgdesc="A useful way to use google in your terminal."
arch=(x86_64 arm64)
url="https://github.com/Raphadoodle/terminalgoogle-git.git"
license=('GPL')
groups=()
depends=(gcc gcc-libs w3m)
makedepends=(git)
checkdepends=()
optdepends=()
provides=()
conflicts=()
replaces=()
backup=()
options=()
install=
changelog=
source=("git+$url")
noextract=()
sha256sums=('SKIP')
validpgpkeys=()

build() {
	cd terminalgoogle-git
	make -s
}


package() {
	cd terminalgoogle-git
        install -Dm755 tgoogle "${pkgdir}/usr/local/bin/tgoogle"
	install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
	install -Dm644 README.md "${pkgdir}/usr/share/doc/${pkgname}/README.md"
}