Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/akornatskyy/lux
A package manager for shell scripts
https://github.com/akornatskyy/lux
lua lux package-manager
Last synced: 5 days ago
JSON representation
A package manager for shell scripts
- Host: GitHub
- URL: https://github.com/akornatskyy/lux
- Owner: akornatskyy
- License: mit
- Created: 2019-05-14T06:24:12.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-04-29T19:35:27.000Z (almost 4 years ago)
- Last Synced: 2024-11-29T15:52:19.045Z (2 months ago)
- Topics: lua, lux, package-manager
- Language: Go
- Homepage:
- Size: 13.7 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# lux
[![Build Status](https://travis-ci.org/akornatskyy/lux.svg?branch=master)](https://travis-ci.org/akornatskyy/lux) [![Go Report Card](https://goreportcard.com/badge/github.com/akornatskyy/lux)](https://goreportcard.com/report/github.com/akornatskyy/lux) [![Go Doc](https://godoc.org/github.com/akornatskyy/lux?status.svg)](https://godoc.org/github.com/akornatskyy/lux)
A package manager for shell scripts.
## Install
```sh
go get github.com/akornatskyy/lux
```or download a binary from available releases.
## Usage
```sh
usage: lux [options...] [ns/]package[:bundle][ ...]
-u update package
-v verbose mode
packages @ https://raw.githubusercontent.com/akornatskyy/lux-pkg
```Example:
```sh
lux lua:5.1
```## Packages
Feel free to contribute packages to [central](https://github.com/akornatskyy/lux-pkg) repository by submitting a pull request or create a repository named *lux-pkg* in your github.com account. In the later case your account name would serve as a namespace for package.
You can override the central repository URL by exporting *LUX_URL* environment varilable. Packages and downloads are stored under *~/.cache/lux/*, use *LUX_PKG* environment variable to override.
## Release
```sh
CGO_ENABLED=0 go build -ldflags "-w -s" && upx --ultra-brute lux
```