Home
Name Modified Size InfoDownloads / Week
snapshot 2023-03-12
rpm-specs 2019-05-02
srpms 2018-02-15
old 2014-11-03
gawk-lmdb-1.1.3.tar.gz 2024-01-21 427.8 kB
gawk-select-1.1.4.tar.gz 2024-01-21 425.9 kB
gawk-reclen-1.0.1.tar.gz 2024-01-16 414.7 kB
gawk-errno-1.1.1.tar.gz 2024-01-16 415.5 kB
gawk-pgsql-1.1.2.tar.gz 2024-01-15 562.9 kB
gawk-json-2.0.1.tar.gz 2023-12-06 450.2 kB
gawk-gd-1.0.3.tar.gz 2023-11-14 546.7 kB
gawk-aregex-1.1.0.tar.gz 2020-09-30 392.0 kB
gawk-mpfr-1.1.0.tar.gz 2019-05-02 546.6 kB
gawk-redis-1.7.8.tar.gz 2019-05-02 456.2 kB
gawk-xml-1.1.1.tar.gz 2018-03-30 1.1 MB
gawk-abort-1.0.1.tar.gz 2018-01-19 387.4 kB
gawk-nl_langinfo-1.1.0.tar.gz 2017-12-19 414.1 kB
README 2017-11-27 2.9 kB
Development 2017-11-18 6.2 kB
gawkextlib-1.0.4.tar.gz 2017-11-18 352.6 kB
gawk-haru-1.0.2.tar.gz 2014-11-14 426.0 kB
Totals: 21 Items   7.4 MB 17
This is gawkextlib.  It contains several shared library extension packages for
gawk, as well as libgawkextlib containing some APIs that are useful for
extension packages.  These extension libraries require the use of gawk (GNU
Awk) version 4.1.1 or later, except for the select and json extensions, which
are currently supported only by gawk 4.2 (API version 2) and later.

The 1.1.0 releases of the extensions should work with both API versions 1
(prior to gawk 4.2) and 2 (starting with gawk 4.2). The API changes did not
affect gawkextlib.

Please download gawkextlib plus one or more individual extensions.  You should
build and install gawkextlib first.  After you untar each package, please cd
into its directory and build as follows:

   ./configure && make && make check && make install && echo Success.

On an rpm-based system, such as Fedora or RHEL or CentOS, you should download
each package's rpm spec file from the rpm-specs directory and place the
tarballs in the customary RPM source directory, which defaults to
$HOME/rpmbuild/SOURCES.  You can then say
   rpmbuild -bb gawkextlib.spec
After installing the gawkextlib rpm, you can then build the individual
extension rpms like so:
   rpmbuild -bb gawk-<extension>.spec

If you would like to build from git sources, please make sure that your
system has these packages installed: autoconf, automake, gettext, libtool,
and autopoint. On many systems, autopoint is part of the gettext package,
but some distributions, such as Ubuntu, place it in a separate package.

With that infrastructure in place, the steps are very similar:

   git clone git://git.code.sf.net/p/gawkextlib/code gawkextlib

Please build lib first, and then the extensions you want, like so:

   autoreconf -i && \
      ./configure && make && make check && make install && echo Success.

Note: if gawk is installed in a non-standard location, please call
"configure --with-gawk=/path/to/gawk".  Similarly, if you do not
plan to install gawkextlib in the standard location, please use the --prefix
option.  So your configure command might look something like:
   configure --with-gawk=/path/to/gawk --prefix=/path/to/gawkextlib

Please use the mailing lists to report bugs or contribute new code.
We welcome the contribution of new extensions.

Developers: please refer to the Development file.  This file has more detailed
instructions for building from git, installing in non-standard locations,
creating new extensions, and testing packages.

Note: if you are using legacy xgawk, please upgrade to gawk version 4.1.1 or
later with these new packages.  There is only one known incompatibility between
xgawk and current gawk: in gawk 4.1 and later, the @include and @load
directives require double quotes around the filename.  With xgawk, there were
no quotes.  Please let us know if you find any other incompatibilities.
Source: README, updated 2017-11-27