From 5324cbef3d440963c5fe865a8af6ea57e9332632 Mon Sep 17 00:00:00 2001 From: Marcin Karpezo Date: Fri, 18 Sep 2009 17:55:41 +0200 Subject: [PATCH] Updated README --- README | 25 ++++++++++--------------- simpleburner.py | 4 ++-- 2 files changed, 12 insertions(+), 17 deletions(-) diff --git a/README b/README index ccb634f..d75fc0e 100644 --- a/README +++ b/README @@ -1,35 +1,30 @@ DESCRIPTION: -Simpleburn is program running under the CLI environment to make Your burning CD/DVD's easier. +Simpleburner - running under the CLI environment to make Your burning CD/DVD's easier. HOMEPAGE: DEPENDENCES: - * perl(>=5.10.0) - - * cdrkit - + * python>=2.3 - + * cdrkit - or cdrtools - INSTALLATION: To get the source of simpleburnerer run: $ git clone git://github.com/sirmacik/simpleburner.git And then install with command: - # install -Dm simpleburnerer/simpleburnerer.pl /usr/bin/simpleburnerer + # install -Dm simpleburnerer/simpleburner.py /usr/bin/simpleburner You could also install it with PKGBUILD from AUR -WARNING: -To burn Your CD You must put Your files into default /tmp/burner directory or run burner with —data=/your/burndata/directory option - -WARNING: -If You create iso image, by default You'll find it in /tmp directory but You could set Your own location - OPTIONS: - * h|help - print help message - * test - run in test burn mode - * b|burn-only - run without making iso image (‘—name=/full/path/to/image.iso’iso option must be defined) - * m|makeiso - make only iso image (without burn), by default Your iso file will be stored in /tmp + * h, help - print help message + * t, test - run in test burn mode + * b, burn-only - run without making iso image (‘—name=/full/path/to/image.iso’iso option must be defined) + * m, makeiso - make only iso image (without burn), by default Your iso file will be stored in /tmp * data=s - set directory willth data to burn (default /tmp/burner) * name=s - set name of iso file (defaultault cd.iso) - * burner=s - set burner to use (default /dev/sr0) + * device=s - set device to use (default /dev/sr0) + * speed=s - set burning speed LINKS: Project site at freshmeat diff --git a/simpleburner.py b/simpleburner.py index c58c707..1ef6c82 100755 --- a/simpleburner.py +++ b/simpleburner.py @@ -79,9 +79,9 @@ if __name__=="__main__": parser.add_option("-t", "--test", action="store_true", dest="test", default= False , help="run in test burn mode") parser.add_option("-b", "--burn-only", action="store_true", dest="burn", default=False, - help="run without making iso image ('--name' option must be defined)") + help="run without making iso image") parser.add_option("-m", "--makeiso", action="store_true", dest="make", default=False, - help="make only iso image (by default image will be stored in current directory)") + help="make only iso image") (options, args) = parser.parse_args() datadir = options.datadir -- 2.11.4.GIT