You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Dan Buch b560e3c868
ex26 with a smidge of modification
9 years ago
..
.gitignore ex26 with a smidge of modification 9 years ago
Makefile ex26 with a smidge of modification 9 years ago
README ex26 with a smidge of modification 9 years ago
commands.c ex26 with a smidge of modification 9 years ago
commands.h ex26 with a smidge of modification 9 years ago
db.c ex26 with a smidge of modification 9 years ago
db.h ex26 with a smidge of modification 9 years ago
dbg.h ex26 with a smidge of modification 9 years ago
devpkg.c ex26 with a smidge of modification 9 years ago
shell.c ex26 with a smidge of modification 9 years ago
shell.h ex26 with a smidge of modification 9 years ago

README

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