Add the pkg config files

This commit is contained in:
Peltoche 2018-11-25 14:06:13 +01:00
parent 0fd07cb1bf
commit 0f78ef1063
No known key found for this signature in database
GPG key ID: CED68D0487156952
2 changed files with 33 additions and 0 deletions

15
.SRCINFO Normal file
View file

@ -0,0 +1,15 @@
pkgbase = lsd
pkgdesc = A ls command with a lot of pretty colors.
pkgver = 0.1.0
pkgrel = 1
url = https://github.com/Peltoche/lsd
arch = i686
arch = x86_64
arch = armv6h
arch = armv7h
license = Apache-2.0
makedepends = rust
makedepends = cargo
pkgname = lsd

18
PKGBUILD Normal file
View file

@ -0,0 +1,18 @@
# Maintainer: Peltoche <dev@halium.fr>
pkgname=lsd
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
}