summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 09c02d35b52ad466be1a1523ec9de7fb83780175 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Maintainer: Aman Sinha

pkgname=mongodb-shell
pkgver=0.2.2
pkgrel=1
pkgdesc='The MongoDB Shell includes all features of legacy mongo shell with new syntax highligting, clear error messages and intelligent autocomplete.'
url='https://www.mongodb.com/'
license=('apache-2.0')
depends=('mongodb-bin')
provides=("mongosh")
arch=('x86_64')
source=("https://downloads.mongodb.com/compass/mongosh-$pkgver-linux.tgz")
sha256sums=("63338e10224b2adb4d11318e07fd1636134422cabff7cef7623f82c47e76bf83")
options=(!strip)
package() {
  cd $srcdir
  install -Dm755 mongosh $pkgdir/usr/bin/mongosh
}