box-o-sand/oldstuff/lcthw-remnants-2/devpkg
2020-06-04 09:54:59 -04:00
..
.gitignore Move tons of stuff into oldstuff/ 2020-06-04 09:54:59 -04:00
commands.c Move tons of stuff into oldstuff/ 2020-06-04 09:54:59 -04:00
commands.h Move tons of stuff into oldstuff/ 2020-06-04 09:54:59 -04:00
db.c Move tons of stuff into oldstuff/ 2020-06-04 09:54:59 -04:00
db.h Move tons of stuff into oldstuff/ 2020-06-04 09:54:59 -04:00
dbg.h Move tons of stuff into oldstuff/ 2020-06-04 09:54:59 -04:00
devpkg.c Move tons of stuff into oldstuff/ 2020-06-04 09:54:59 -04:00
Makefile Move tons of stuff into oldstuff/ 2020-06-04 09:54:59 -04:00
README Move tons of stuff into oldstuff/ 2020-06-04 09:54:59 -04:00
shell.c Move tons of stuff into oldstuff/ 2020-06-04 09:54:59 -04:00
shell.h Move tons of stuff into oldstuff/ 2020-06-04 09:54:59 -04:00

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