Skip to content

Commit

Permalink
grr
Browse files Browse the repository at this point in the history
  • Loading branch information
Kyle Maxwell committed Jan 4, 2009
1 parent 60ce1db commit 26e3d93
Show file tree
Hide file tree
Showing 3 changed files with 7,536 additions and 14 deletions.
27 changes: 16 additions & 11 deletions INSTALL
Original file line number Diff line number Diff line change
@@ -1,26 +1,31 @@
Dexter depends on
- the JSON C library from http://oss.metaparadigm.com/json-c/ (I used 0.7)
- argp (standard with GNU)
- pcre (dev)
- argp (standard with Linux, other platforms use argp-standalone package)
- pcre (with dev headers)
- libxml2
- libxslt (with exslt)

GNU/Linux:
It's a standard ./configure && make && sudo make install once the
dependencies are installed. Examples below, assuming you're in the
current directory.

Debian/Ubuntu
------------------------------------------------------------------------
Dexter uses autotools, so install the JSON library, and then:
./bootstrap.sh
sudo apt-get install libxslt1-dev libpcre3-dev build-essential wget
wget http://oss.metaparadigm.com/json-c/json-c-0.7.tar.gz
tar -zxf json-c-0.7.tar.gz
cd json-c-0.7
./configure
make
sudo make install
cd -
./configure
make
sudo make install

Mac OS X with MacPorts:
------------------------------------------------------------------------

The default version of Gnu M4 on OS X is broken. You might need to
install the latest.

sudo port install argp-standalone json-c
./bootstrap.sh
sudo port install argp-standalone json-c pcre
./configure
make
sudo make install
Expand Down
6 changes: 3 additions & 3 deletions README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ A simple script, or "dex", looks like this:

{
"title": "h1",
"links": [
"links(a)": [
{
"text": "a",
"href": "$text/@href"
"text": ".",
"href": "@href"
}
]
}
Expand Down
Loading

0 comments on commit 26e3d93

Please sign in to comment.