Add README.md

Also update AM_INIT_AUTOMAKE
This commit is contained in:
Kevin Bowen
2020-10-05 00:43:50 +02:00
committed by Simon Steinbeiß
parent 6d1bad4e5d
commit e3ba69c187
4 changed files with 49 additions and 29 deletions

View File

@@ -14,6 +14,7 @@ ChangeLog: Makefile
ChangeLog-git.sh > $(srcdir)/ChangeLog || touch $(srcdir)/ChangeLog ChangeLog-git.sh > $(srcdir)/ChangeLog || touch $(srcdir)/ChangeLog
EXTRA_DIST = \ EXTRA_DIST = \
README.md \
intltool-extract.in \ intltool-extract.in \
intltool-merge.in \ intltool-merge.in \
intltool-update.in \ intltool-update.in \

28
README
View File

@@ -1,28 +0,0 @@
*********************************************
xfce4-taskmanager -- Easy to use task manager
*********************************************
** Retrieving **
The latest version of xfce4-taskmanager can always be obtained from
http://goodies.xfce.org/releases/xfce4-taskmanager/. Please check to
see if there is a newer version available before reporting bugs.
** Requirements **
GTK+ 3.22
Cairo 1.5
Xmu 1.1.2
Libwnck 3.2 (optional)
** Building **
./configure
make
make install (as root if needed)
** Usage **
The GUI can be started by running 'xfce4-taskmanager'.

47
README.md Normal file
View File

@@ -0,0 +1,47 @@
[![License](https://img.shields.io/badge/License-GPL%20v2-blue.svg)](https://gitlab.xfce.org/apps/xfce4-taskmanager/-/blob/master/COPYING)
# xfce4-taskmanager
The xfce4-taskmanager component is an easy to use graphical task manager.
----
### Homepage
[Xfce4-taskmanager documentation](https://docs.xfce.org/apps/xfce4-taskmanager/start)
### Changelog
See [NEWS](https://gitlab.xfce.org/apps/xfce4-taskmanager/-/blob/master/NEWS) for details on changes and fixes made in the current release.
### Source Code Repository
[Xfce4-taskmanager source code](https://gitlab.xfce.org/apps/xfce4-taskmanager)
### Download a Release Tarball
[Xfce4-taskmanager archive](https://archive.xfce.org/src/apps/xfce4-taskmanager)
or
[Xfce4-taskmanager tags](https://gitlab.xfce.org/apps/xfce4-taskmanager/-/tags)
### Installation
From source code repository:
% cd xfce4-taskmanager
% ./autogen.sh
% make
% make install
From release tarball:
% tar xf xfce4-taskmanager-<version>.tar.bz2
% cd xfce4-taskmanager-<version>
% ./configure
% make
% make install
### Reporting Bugs
Visit the [reporting bugs](https://docs.xfce.org/apps/xfce4-taskmanager/bugs) page to view currently open bug reports and instructions on reporting new bugs or submitting bugfixes.

View File

@@ -29,7 +29,7 @@ AC_REVISION([taskmanager_version_build])
dnl *************************** dnl ***************************
dnl *** Initialize automake *** dnl *** Initialize automake ***
dnl *************************** dnl ***************************
AM_INIT_AUTOMAKE([1.8 no-dist-gzip dist-bzip2]) AM_INIT_AUTOMAKE([1.8 no-dist-gzip dist-bzip2 foreign])
AM_CONFIG_HEADER([config.h]) AM_CONFIG_HEADER([config.h])
AM_MAINTAINER_MODE() AM_MAINTAINER_MODE()
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])