https://github.com/genshen/pkg
A simple and experimental c/c++ package manager
https://github.com/genshen/pkg
c cpp package-manager
Last synced: 3 months ago
JSON representation
A simple and experimental c/c++ package manager
- Host: GitHub
- URL: https://github.com/genshen/pkg
- Owner: genshen
- License: mit
- Created: 2018-04-12T01:19:02.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2025-09-22T07:39:24.000Z (6 months ago)
- Last Synced: 2025-09-22T09:30:21.920Z (6 months ago)
- Topics: c, cpp, package-manager
- Language: Go
- Homepage:
- Size: 344 KB
- Stars: 10
- Watchers: 2
- Forks: 2
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# pkg
> a simple c/c++ package manager based on source code.
## Usage
- Quick Start
```
$ go get -u github.com/genshen/pkg/pkg
# generate a new "package.yaml"
$ pkg init
# install a package,type can be "git", "tar", "files" for now.
$ pkg fetch
# build and install packages from "package.yaml" file.
$ pkg install
# build and install a package specified by argument --pkg.
$ pkg install -pkg= # or: pkg install --pkg
```