]> granicus.if.org Git - file/commitdiff
Sync README.DEVELOPER and .travis.yml
authorKimmo Suominen <kimmo@suominen.com>
Sat, 8 Mar 2014 08:41:07 +0000 (08:41 +0000)
committerKimmo Suominen <kimmo@suominen.com>
Sat, 8 Mar 2014 08:41:07 +0000 (08:41 +0000)
Minimize the number and size of dependencies and remove redundant
packages from the list.

.travis.yml
README.DEVELOPER

index eba3664eff55522f296bfa490e8fbbff99a201f3..7329a5934067cbdf58ff1f800fb2c7245256c810 100644 (file)
@@ -4,7 +4,7 @@ compiler:
  - clang
 before_install:
  - sudo apt-get update -qq
- - sudo apt-get install -qq automake autoconf libtool make zlib1g-dev python
+ - sudo apt-get install -qq automake autotools-dev make libtool python zlib1g-dev
 script:
  - autoreconf -f -i
  - ./configure --disable-silent-rules
index de4ef27cab52d2d52e48fca0fcb4e78735af03fd..03310f34a47e3c7741aca35538413ea20d532a5e 100644 (file)
@@ -1,44 +1,39 @@
-= How to get started developing
+# How to get started developing
 
-@(#) $File: README.DEVELOPER,v 1.1 2014/02/18 18:51:51 kim Exp $
+@(#) $File: README.DEVELOPER,v 1.2 2014/03/06 16:57:57 christos Exp $
 
-== Auto files
+## Auto files
 
 After checking out the source, run the following:
 
-       libtoolize
-       aclocal
-       autoheader
-       automake --add-missing
-       autoconf
+       autoreconf -f -i
+       ./configure --disable-silent-rules
+       make -j4
+       make -C tests check
 
-[christos: I run autoreconf -f -i instead of all the above]
 
-       ./configure
-
-
-== Installing dependencies
+## Installing dependencies
 
 If your platform doesn't have the above tools, install the following
 packages first.
 
-=== Debian
+### Debian
 
        apt-get install \
-           autoconf \
            automake \
            autotools-dev \
-           build-essential \
-           libltdl-dev \
+           gcc \
+           make \
            libtool \
-           libtool-doc \
+           python \
+           zlib1g-dev \
 
-=== Mac OS X (MacPorts)
+See also `.travis.yml`.
+
+### Mac OS X (MacPorts)
 
        port install \
            autoconf \
            automake \
            libtool \
 
-Note that `libtoolize` is called `glibtoolize`.
-