Skip to content
Snippets Groups Projects
Commit 5dc0f15f authored by Kevin Bowen's avatar Kevin Bowen Committed by Alexander Schwinn
Browse files

Adds new README.md and updates AM_INIT_AUTOMAKE macro with foreign option

parent b03e6d25
No related branches found
No related tags found
1 merge request!19Adds new README.md and updates AM_INIT_AUTOMAKE macro with foreign option
Pipeline #2279 passed
......@@ -31,9 +31,8 @@ EXTRA_DIST = \
COPYING.LIB \
ChangeLog \
HACKING \
INSTALL \
NEWS \
README \
README.md \
THANKS \
intltool-extract.in \
intltool-merge.in \
......
What is it?
===========
This is libexo, an extension library to Xfce, originally developed by
os-cillation. While Xfce comes with quite a few libraries that are targeted at
desktop development, libexo is targeted at application development.
Current state
=============
libexo is considered ready for production use. You do no longer need to
define the EXO_API_SUBJECT_TO_CHANGE preprocessor symbol.
Installation
============
The file 'INSTALL' contains generic installation instructions.
Debugging Support
=================
libexo currently supports four different levels of debugging support, which
can be setup using the configure flag `--enable-debug' (check the output of
`configure --help'):
`full' This is the strongest option. Deprecation and some coding style
checks are made and will cause the build to fail for any errors
or warnings.
`yes' This is the default for Git snapshot builds. It adds all kinds
of checks to the code, and is therefore likely to run slower.
Use this for development of libexo and locating bugs in libexo.
`minimum' This is the default for release builds. This is the recommended
behavior.
`no' Disables all sanity checks. Don't use this unless you know
exactly what you do.
How to report bugs?
===================
Bugs should be reported to the Xfce bug tracking system
(https://gitlab.xfce.org/xfce/exo/-/issues). You will need
to create an account for yourself.
Please read the HACKING file for information on where to send changes
or bugfixes for this package.
[![License](https://img.shields.io/badge/License-GPL%20v2-blue.svg)](https://gitlab.xfce.org/xfce/exo/COPYING)
# exo
exo is an extension library used in the Xfce desktop. It has some helper
applications that are used throughout the entire desktop, to manage preferred
applications and edit .desktop files.
----
### Homepage
[exo documentation](https://docs.xfce.org/xfce/exo/start)
### Changelog
See [NEWS](https://gitlab.xfce.org/xfce/exo/-/blob/master/NEWS) for details on changes and fixes made in the current release.
### Source Code Repository
[exo source code](https://gitlab.xfce.org/xfce/exo)
### Download A Release Tarball
[exo archive](https://archive.xfce.org/src/xfce/exo)
or
[exo tags](https://gitlab.xfce.org/xfce/exo/-/tags)
### Installation
From source:
% cd exo
% ./autogen.sh
% make
% make install
From release tarball:
% tar xf exo-<version>.tar.bz2
% cd exo-<version>
% ./configure
% make
% make install
### Reporting Bugs
Visit the [reporting bugs](https://docs.xfce.org/xfce/exo/bugs) page to view currently open bug reports and instructions on reporting new bugs or submitting bugfixes.
......@@ -43,7 +43,7 @@ AC_CANONICAL_TARGET()
dnl ***************************
dnl *** Initialize automake ***
dnl ***************************
AM_INIT_AUTOMAKE([1.11 dist-bzip2 tar-ustar no-dist-gzip])
AM_INIT_AUTOMAKE([1.11 dist-bzip2 tar-ustar no-dist-gzip foreign])
AC_CONFIG_HEADERS([config.h])
AM_MAINTAINER_MODE()
AM_SILENT_RULES([yes])
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment