diff --git a/Makefile.am b/Makefile.am index 4cae379..79c8663 100644 --- a/Makefile.am +++ b/Makefile.am @@ -3,8 +3,8 @@ snzip_SOURCES = snzip.c snzip.h snzip-format.c framing-format.c framing2-format. PROGS = snzip bin_PROGRAMS = $(PROGS) -EXTRA_DIST = autogen.sh -dist_doc_DATA = ChangeLog COPYING INSTALL NEWS README +EXTRA_DIST = autogen.sh spec/snzip.spec +dist_doc_DATA = AUTHORS ChangeLog COPYING INSTALL NEWS README.md dist-hook: git log > $(distdir)/ChangeLog diff --git a/NEWS b/NEWS index 758fddf..54cb2eb 100644 --- a/NEWS +++ b/NEWS @@ -1,5 +1,14 @@ +snzip 1.0.1 - 2013-11-30 + +* Add a rpm spec file. + (Contributed by Xianglei.) + snzip 1.0.0 - 2013-11-23 +* The default format is changed to framing format. +* Change stdout behaviour like bzip2 or gzip. + (Contribuetd by FUKUDA Masahiro.) + snzip 0.9.0 - 2012-08-05 snzip 0.0.2 - 2011-10-09 diff --git a/README.md b/README.md index 6ce8e39..40ca574 100644 --- a/README.md +++ b/README.md @@ -20,33 +20,46 @@ format as the default format as before. Installation ------------ -Download snzip-1.0.0.tar.gz from http://www.jiubao.org/snzip/, +### Install a tar-ball + +Download snzip-1.0.1.tar.gz from http://www.jiubao.org/snzip/, uncompress and untar it, and run configure. - tar xvfz snzip-1.0.0.tar.gz - cd snzip-1.0.0 + tar xvfz snzip-1.0.1.tar.gz + cd snzip-1.0.1 ./configure If you didn't install snappy under /usr or /usr/local, you need to specify the location by '--with-snappy' as follows. # install snappy - tar xvfz snappy-1.1.0.tar.gz - cd snappy-1.1.0 + tar xvfz snappy-1.1.1.tar.gz + cd snappy-1.1.1 ./configure --prefix=/usr/local/snappy make make install cd .. # install snzip - tar xvfz snzip-1.0.0.tar.gz - cd snzip-1.0.0 + tar xvfz snzip-1.0.1.tar.gz + cd snzip-1.0.1 ./configure --with-snappy=/usr/local/snappy You can use --with-default-format to change the default compression format. ./configure --with-default-format=snzip +### Install a rpm package + +We don't provide rpm packages. You need to download snzip-1.0.1.tar.gz +from http://www.jiubao.org/snzip/, create a rpm package as follows and +install it. + + # The rpm package will be created under $HOME/rpmbuild/RPMS. + rpmbuild -tb snzip-1.0.1.tar.gz + +### Install latest source + To use source code in the github repository. git clone git://github.com/kubo/snzip.git diff --git a/configure.ac b/configure.ac index 5cf7537..0219ac5 100644 --- a/configure.ac +++ b/configure.ac @@ -1,7 +1,7 @@ # The autoconf version must be at least 2.64 to correctly detect # endianess of Mac OS X universal binary. AC_PREREQ(2.64) -AC_INIT([snzip], [1.0.0]) +AC_INIT([snzip], [1.0.1]) AM_INIT_AUTOMAKE