~ubuntu-branches/ubuntu/wily/libsereal-encoder-perl/wily

« back to all changes in this revision

Viewing changes to INSTALL

  • Committer: Package Import Robot
  • Author(s): gregor herrmann
  • Date: 2014-10-20 18:26:33 UTC
  • mfrom: (17.1.5 sid)
  • Revision ID: package-import@ubuntu.com-20141020182633-ojroz2634vd16lqf
Tags: 3.003-1
* Team upload.
* New upstream release.
* Bump versioned build dependency on libsereal-decoder-perl.
* Set SEREAL_USE_BUNDLED_LIBS=1 in debian/rules.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
Install with
 
2
 
 
3
    perl Makefile.PL
 
4
    make
 
5
    make test
 
6
    make instal
 
7
 
 
8
By default the module will detect and use system versions of the miniz
 
9
and csnappy libraries during build and install. You can override this
 
10
by setting the SEREAL_USE_BUNDLED_LIBS to true, or you can override
 
11
it on a case by case basis by setting SEREAL_USE_BUNDLED_MINIZ or
 
12
SEREAL_USE_BUNDLED_CSNAPPY env vars. Eg:
 
13
 
 
14
    SEREAL_USE_BUNDLED_LIBS=1 perl Makefile.PL
 
15
    SEREAL_USE_BUNDLED_CSNAPPY=1 perl Makefile.PL
 
16
    SEREAL_USE_BUNDLED_MINIZ=1 perl Makefile.PL
 
17
 
 
18