Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(379)

Side by Side Diff: third_party/JSON/get_and_build_json_pm.sh

Issue 15736030: Add JSON.pm to third_party (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 #!/bin/bash
2 # Download and build JSON.pm
3 # Homepage:
4 # http://search.cpan.org/~makamaka/JSON-2.58/lib/JSON.pm
5 SRC_URL='http://www.cpan.org/authors/id/M/MA/MAKAMAKA/JSON-2.58.tar.gz'
6 FILENAME="$(basename $SRC_URL)"
7 BUILD_DIR='JSON-2.58'
8 INSTALL_DIR="$(pwd)/out"
9 curl --remote-name "$SRC_URL"
10 tar xvzf "$FILENAME"
11 cd "$BUILD_DIR"
12 perl Makefile.PL INSTALL_BASE="$INSTALL_DIR"
13 make
14 make test
15 make install
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698