An open API service indexing awesome lists of open source software.

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

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
```