feat: a new port 'lynxfetch' (#16)
Some checks failed
Check Conventional Commit / check-commit-message (push) Has been cancelled

<!-- This is an auto-generated comment: release notes by coderabbit.ai
-->

## Summary by CodeRabbit

- **Chores**
	- Updated `.gitignore` to exclude specific directories and file types
	- Added new PKGBUILD file for package version 1.0.2
	- Configured package build and installation settings for `lynxfetch`

<!-- end of auto-generated comment: release notes by coderabbit.ai -->
This commit is contained in:
Eshan Roy
2025-01-12 01:24:15 +05:30
committed by GitHub
2 changed files with 20 additions and 0 deletions

4
lynxfetch/.gitignore vendored Normal file
View File

@@ -0,0 +1,4 @@
pkg
src
*.gz
*.zst

16
lynxfetch/PKGBUILD Normal file
View File

@@ -0,0 +1,16 @@
pkgname=lynxfetch
pkgver=1.0.2
pkgrel=1
pkgdesc="Super fast, versatile, and customizable command-line fetcher."
arch=("any")
makedepends=("cargo")
source=("https://gitlab.com/${pkgname}/${pkgname}/-/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz")
sha512sums=("c352adf09c7d7507a03b72143dfde428045dfa2fc075bdb9e09c393effd8d4b772465bd27f5e75f8c5181308a90ba2366b32d6e27c395bdc36237050cd34d9e5")
package() {
cd "${pkgname}-${pkgver}"
cargo build -r -F linux
install -Dm755 "target/release/${pkgname}" -t "${pkgdir}/usr/bin/"
}