# npkg **Repository Path**: plus7wist/npkg ## Basic Information - **Project Name**: npkg - **Description**: A neat package manager. - **Primary Language**: Rust - **License**: WTFPL - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-02-28 - **Last Updated**: 2024-05-28 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # npkg - Neat Package Manager ## Dependencies of npkg - coreutils: to do copy and install things - curl: download source files - recipe files: `pkg/*.json`, we will move it into a new place after npkg is stable. ## How to - Install `npkg`: By cargo, we have no release by now. - How to generate recipe files: Run `cargo r --example pkg_{PKG}` to print recipe to standard output, redirect it to `pkg/{PKG}.json`. Script `./update_pkg.sh` will generate all recipes for each `examples/pkg_{PKG}.rs`. - How to install package: Run npkg (by executable or by `cargo`) in top directory of this repo. For example: ``` npkg install make ```