commit d9ac7bfde75712fb180e63c9bd7ea54df605a934 Author: CELESTIFYX Date: Tue Jan 13 13:33:33 2026 +0200 Initial commit diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 0000000000000..043da84aaad89 --- /dev/null +++ b/.SRCINFO @@ -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 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000000000..ddb964e8480b1 --- /dev/null +++ b/.gitignore @@ -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}} + diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 0000000000000..ab0c791d2d5eb --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,18 @@ +# Maintainer: CELESTIFYX Team + +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/" +}