blob: 90befd3a0d4c4f7a8f8316c0e4c38bcf8b88011b (
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
|
# Maintainer: Víctor Javier Díaz Garrido <vicdigar at hotmail dot com>
pkgname=novafetch-git
_pkgname=novafetch
pkgver=0.1.0
pkgrel=1
pkgdesc="Simple tool written in Rust to get information about your pc"
arch=('x86_64')
url="https://github.com/UnversedBlood/novafetch"
license=('GPL3')
depends=()
makedepends=('cargo' 'git' 'make')
provides=(novafetch)
conflicts=(novafetch)
source=("git+https://github.com/UnversedBlood/novafetch.git")
md5sums=('SKIP')
build() {
cd "$_pkgname"
make
}
package() {
cd "$_pkgname"
#make install
install -D -m755 "target/release/novafetch" "$pkgdir/usr/bin/novafetch"
}
|