Audio Tag Tool is a program to manage the information fields in MP3 and
Ogg Vorbis files, commonly called tags. Tag Tool can be used to edit
tags one by one, but the most useful features are the ability to easily
tag or rename hundreds of files at once, in any desired format. The mass
tag and mass rename features can handle filenames in any format thanks
to an easily configurable format template.
from MAINTAINER Vlad Glagolev <stelzy at gmail.com>
libdaemon is a lightweight C library that eases the writing of UNIX
daemons. It consists of the following parts:
* A wrapper around fork() which does the correct daemonization procedure
of a process
* A wrapper around syslog() for simpler and compatible log output to
Syslog or STDERR
* An API for writing PID files
* An API for serializing UNIX signals into a pipe for usage with
select() or poll()
* An API for running subprocesses with STDOUT and STDERR redirected to
syslog.
ok kili@
libConfuse is a configuration file parser library, and written in C. It
supports sections and (lists of) values (strings, integers, floats,
booleans or other sections), as well as some other features (such as
single/double-quoted strings, environment variable expansion, functions
and nested include statements). It makes it very easy to add
configuration file capability to a program using a simple API.
ok kili@
of FORCE_UPDATE. Also break out in case update fails (otherwise the old
installed package would be enough to continue building).
Sprinkle REPORT_PROBLEM to know more precisely what stuff is breaking.
replace some
if eval cmd; then
with
if (eval exec cmd); then
because if eval... seems to break early, even with the test guard, thus
giving a chance to REPORT_PROBLEM to do stuff instead of having to wait.
(Note: a trap would probably be simpler ?)
The Inline module allows you to put source code from other programming
languages directly "inline" in a Perl script or module. The code is
automatically compiled as needed, and then loaded for immediate access
from Perl.
from Andreas Bihlmaier <andreas.bihlmaier at gmx.de>