Returned some files that required by automake

Updated version in configure.ac
Added the new README.md and CHANGELOG.md to makefile.am
Added info about where RPM package can be downloaded
This commit is contained in:
Cyber Emissary
2018-02-13 13:54:34 -05:00
parent f91c756c8e
commit 0a68ee9a02
5 changed files with 18 additions and 2 deletions

3
ChangeLog Normal file
View File

@@ -0,0 +1,3 @@
ChangeLog moved to CHANGELOG.md
# Keeping this file as it's required by automake

View File

@@ -3,7 +3,7 @@ SUBDIRS = src include doc
DEFDIR = $(prefix)
EXTRA_DIST = HACKING libmdb.pc.in libmdbsql.pc.in
EXTRA_DIST = HACKING libmdb.pc.in libmdbsql.pc.in CHANGELOG.md README.md
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = libmdb.pc libmdbsql.pc

3
README Normal file
View File

@@ -0,0 +1,3 @@
Readme moved to Readme.md
# Keeping this file as it's required by automake

View File

@@ -19,6 +19,16 @@ $ sudo apt-update
$ sudo apt-get install cyber-mdbtools
```
## RPM Package
No repository for RPM distribution, but you can install from rpm file:
```bash
wget https://rpm.cybercoder.site/rpm/cyber-mdbtools-0.8.1-2.x86_64.rpm
rpm -i cyber-mdbtools-0.8.1-2.x86_64.rpm
```
> The RPM package was created using `alient` from the DEB package, so it may or may not work on your linux distribution.
# Contributing
Feel free to submit PR requests here. I will try to review and merge them regularly.

View File

@@ -1,5 +1,5 @@
dnl Process this file with autoconf to produce a configure script.
AC_INIT([mdbtools],[0.7.1],[mdbtools-dev@lists.sourceforge.net])
AC_INIT([mdbtools],[0.8.1],[mdbtools-dev@lists.sourceforge.net])
AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_AUX_DIR([build-aux])
AC_CONFIG_SRCDIR(src/extras/mdb-dump.c)