summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 8472eb21a0fa827e4fd47cb33d64b7e74ed36db0 (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
# Maintainer: Fredrik Söderström <tirithen@gmail.com>
pkgname=search
pkgver=1.1.1
pkgrel=3
pkgdesc="Search the web from the terminal"
arch=('x86_64' 'aarch64')
url="https://github.com/tirithen/terminal-search"
license=('GPL3')
depends=(
  'liblphobos'
)
makedepends=(
  'dub'
  'ldc'
)
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/tirithen/terminal-${pkgname}/archive/v${pkgver}.tar.gz")
sha256sums=('7019827fa42c6a0e07a79c43ffffc469e2a9d01c84c6aef3f1be7fcec9a33d85')

build() {
	cd "$srcdir/terminal-$pkgname-$pkgver"
  dub build --compiler=ldc2 --build=release
}

package() {
	cd "$srcdir/terminal-$pkgname-$pkgver"
  mkdir -p $pkgdir/usr/bin/
	cp $pkgname $pkgdir/usr/bin/
}