summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 32d1b0001f5f8bf67aa191043440442cf6ad43cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Maintainer: Peltoche <dev@halium.fr>
pkgname=lsd-git
pkgver=0.1.0
pkgrel=1
makedepends=('rust' 'cargo')
arch=('i686' 'x86_64' 'armv6h' 'armv7h')
pkgdesc="A ls command with a lot of pretty colors."
url="https://github.com/Peltoche/lsd"
license=('Apache-2.0')

build() {
    return 0
}

package() {
    cd $srcdir
    cargo install --root="$pkgdir" --git=https://github.com/Peltoche/lsd
}