mirror of
https://github.com/lsd-rs/lsd
synced 2024-11-10 14:24:27 +00:00
Add the pkg config files
This commit is contained in:
parent
0fd07cb1bf
commit
0f78ef1063
2 changed files with 33 additions and 0 deletions
15
.SRCINFO
Normal file
15
.SRCINFO
Normal 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
18
PKGBUILD
Normal 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
|
||||
}
|
Loading…
Reference in a new issue