mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Removed the '.pl' suffix from all scripts
This commit is contained in:
parent
7ab9d4fcfd
commit
a613816050
@ -1925,6 +1925,7 @@ Ville Skytt
|
||||
for fixing a crash when deleting a recording while cutting it
|
||||
for fixing several spelling errors
|
||||
for adding generating a pkg-config file to the Makefile
|
||||
for removing the '.pl' suffix from all scripts (thanks to Ville Skyttä).
|
||||
|
||||
Steffen Beyer <cpunk@reactor.de>
|
||||
for fixing setting the colored button help after deleting a recording in case the next
|
||||
|
1
HISTORY
1
HISTORY
@ -6774,3 +6774,4 @@ Video Disk Recorder Revision History
|
||||
- The new SVDRP command UPDR can be used to trigger an update of the list of
|
||||
recordings (thanks to Lars Hanisch).
|
||||
- Added generating a pkg-config file to the Makefile (thanks to Ville Skyttä).
|
||||
- Removed the '.pl' suffix from all scripts (thanks to Ville Skyttä).
|
||||
|
4
Makefile
4
Makefile
@ -4,7 +4,7 @@
|
||||
# See the main source file 'vdr.c' for copyright information and
|
||||
# how to reach the author.
|
||||
#
|
||||
# $Id: Makefile 2.20 2011/12/04 14:12:49 kls Exp $
|
||||
# $Id: Makefile 2.21 2011/12/04 14:17:35 kls Exp $
|
||||
|
||||
.DELETE_ON_ERROR:
|
||||
|
||||
@ -190,7 +190,7 @@ install: install-bin install-conf install-doc install-plugins install-i18n insta
|
||||
|
||||
install-bin: vdr
|
||||
@mkdir -p $(DESTDIR)$(BINDIR)
|
||||
@cp --remove-destination vdr svdrpsend.pl $(DESTDIR)$(BINDIR)
|
||||
@cp --remove-destination vdr svdrpsend $(DESTDIR)$(BINDIR)
|
||||
|
||||
# Configuration files:
|
||||
|
||||
|
@ -7,12 +7,12 @@
|
||||
# plus an 'index.htm' file. All output files are written into the current
|
||||
# directory.
|
||||
#
|
||||
# Usage: epg2html.pl < /video/epg.data
|
||||
# Usage: epg2html < /video/epg.data
|
||||
#
|
||||
# See the main source file 'vdr.c' for copyright information and
|
||||
# how to reach the author.
|
||||
#
|
||||
# $Id: epg2html.pl 1.7 2006/04/17 12:19:08 kls Exp $
|
||||
# $Id: epg2html 2.1 2011/12/04 14:17:35 kls Exp $
|
||||
|
||||
@Index = ();
|
||||
|
@ -5,12 +5,12 @@
|
||||
# Extracts all texts from the file i18n.c and creates language
|
||||
# specific *.po files.
|
||||
#
|
||||
# Usage: i18n-to-gettext.pl
|
||||
# Usage: i18n-to-gettext
|
||||
#
|
||||
# See the main source file 'vdr.c' for copyright information and
|
||||
# how to reach the author.
|
||||
#
|
||||
# $Id: i18n-to-gettext.pl 2.1 2009/10/18 14:07:49 kls Exp $
|
||||
# $Id: i18n-to-gettext 2.2 2011/12/04 14:17:35 kls Exp $
|
||||
|
||||
# How to convert an actual plugin:
|
||||
#
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# Makefile for a libsi
|
||||
#
|
||||
# $Id: Makefile 2.1 2010/11/07 13:31:05 kls Exp $
|
||||
# $Id: Makefile 2.2 2011/12/04 14:18:38 kls Exp $
|
||||
|
||||
### The C++ compiler and options:
|
||||
|
||||
@ -52,4 +52,4 @@ clean:
|
||||
|
||||
dist:
|
||||
tar cvzf libsi.tar.gz -C .. libsi/util.c libsi/si.c libsi/section.c libsi/descriptor.c \
|
||||
libsi/util.h libsi/si.h libsi/section.h libsi/descriptor.h libsi/headers.h libsi/Makefile libsi/gendescr.pl
|
||||
libsi/util.h libsi/si.h libsi/section.h libsi/descriptor.h libsi/headers.h libsi/Makefile libsi/gendescr
|
||||
|
@ -1,6 +1,6 @@
|
||||
#!/usr/bin/perl
|
||||
|
||||
# $Id: gendescr.pl 1.2 2003/12/13 10:42:05 kls Exp $
|
||||
# $Id: gendescr 1.2 2003/12/13 10:42:05 kls Exp $
|
||||
|
||||
print "Name (ohne ...Descriptor):";
|
||||
$name=<STDIN>;
|
@ -5,12 +5,12 @@
|
||||
# Converts all 'summary.vdr' files in the video directory to the
|
||||
# 'info.vdr' format as used from VDR version 1.3.25 upward.
|
||||
#
|
||||
# Usage: summary2info.pl /video
|
||||
# Usage: summary2info /video
|
||||
#
|
||||
# See the main source file 'vdr.c' for copyright information and
|
||||
# how to reach the author.
|
||||
#
|
||||
# $Id: summary2info.pl 1.6 2006/04/17 12:19:24 kls Exp $
|
||||
# $Id: summary2info 2.1 2011/12/04 14:17:35 kls Exp $
|
||||
|
||||
$VideoDir = $ARGV[0] || die "please provide the name of the video directory\n";
|
||||
|
Loading…
Reference in New Issue
Block a user