Initial commit

This commit is contained in:
CELESTIFYX 2026-01-13 13:33:33 +02:00
commit d9ac7bfde7
3 changed files with 33 additions and 0 deletions

10
.SRCINFO Normal file
View 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
View 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
View 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/"
}