mirror of
https://github.com/archlinux/aur.git
synced 2026-03-14 23:16:48 +01:00
Initial commit
This commit is contained in:
commit
d9ac7bfde7
3 changed files with 33 additions and 0 deletions
10
.SRCINFO
Normal file
10
.SRCINFO
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
pkgbase = lynxfetch
|
||||
pkgdesc = Super fast, versatile, and customizable command-line fetcher.
|
||||
pkgver = 1.1.0
|
||||
pkgrel = 1
|
||||
arch = x86_64
|
||||
makedepends = cargo
|
||||
source = https://gitlab.com/lynxfetch/lynxfetch/-/archive/1.1.0/lynxfetch-1.1.0.tar.gz
|
||||
sha512sums = 341c31abaead79100c22e1c002d681bfce05f02358ef46cf0e4083323f1038fdb0d10c9591aab203d2f85cb05bc3b6e30169d87d8906c4da082d807f1e7f2a63
|
||||
|
||||
pkgname = lynxfetch
|
||||
5
.gitignore
vendored
Normal file
5
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
# Removing non essentails to git ignore
|
||||
|
||||
/.idea
|
||||
/{src,pkg,*.{gz,zst,xz,bz2,zip,rar,tar,7z,deb,rpm,tgz,exe,lzh,lz4,ar,apk,xbps,run}}
|
||||
|
||||
18
PKGBUILD
Normal file
18
PKGBUILD
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
# Maintainer: CELESTIFYX Team <celestifyx@gmail.com>
|
||||
|
||||
pkgname="lynxfetch"
|
||||
pkgver=1.1.0
|
||||
pkgrel=1
|
||||
pkgdesc="Super fast, versatile, and customizable command-line fetcher."
|
||||
arch=("x86_64")
|
||||
makedepends=("cargo")
|
||||
|
||||
source=("https://gitlab.com/${pkgname}/${pkgname}/-/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz")
|
||||
sha512sums=("341c31abaead79100c22e1c002d681bfce05f02358ef46cf0e4083323f1038fdb0d10c9591aab203d2f85cb05bc3b6e30169d87d8906c4da082d807f1e7f2a63")
|
||||
|
||||
package() {
|
||||
cd "${pkgname}-${pkgver}"
|
||||
|
||||
cargo build -r
|
||||
install -Dm755 "target/release/${pkgname}" -t "${pkgdir}/usr/bin/"
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue