ex26 with a smidge of modification

This commit is contained in:
Dan Buch
2016-04-16 02:26:19 -04:00
parent c55b0e5c4c
commit b560e3c868
13 changed files with 708 additions and 1 deletions

View File

@@ -0,0 +1,47 @@
# `devpkg`
This is a thingy that downloads, builds, and installs stuff!
## usage
Before you can do the fun part, you need to initialize the bits:
``` bash
devpkg -S
```
Install something via URL:
``` bash
devpkg -I http://example.org/foo.tar.bz2
```
Install something via URL with custom arguments for configure, make, and
install:
``` bash
devpkg -I http://example.org/foo.tar.bz2 -c '--no-flair' -m 'CFLAGS+=-Wall' -i '-n'
```
Perform a fetch *only* without building or installing:
``` bash
devpkg -F http://example.org/foo.tar.bz2
```
Perform a build *only* without installing:
``` bash
devpkg -B http://example.org/foo.tar.bz2
```
List the stuff that's been installed:
``` bash
devpkg -L
```
<!--
vim:filetype=markdown
-->