Update of /cvsroot/devil-linux/build/scripts
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6306/scripts
Added Files:
id3lib id3v2
Log Message:
- added id3lib v3.8.3
- added id3v2 v0.1.11
- added perl module DBD-Pg v1.32
- added perl module DBD-mysql v2.9004
- added perl module DBI v1.43
--- NEW FILE: id3v2 ---
#!/bin/bash
# $Source: /cvsroot/devil-linux/build/scripts/id3v2,v $
# $Revision: 1.1 $
# $Date: 2004/08/01 18:27:21 $
#
# http://www.devil-linux.org
# you need the next line, otherwise script won't be executed !!!
# DL-build-system v3
### BEGIN INIT INFO
# Provides: id3v2
# Required-Start: $basebuildtools $libs
# Required-Stop:
# Default-Start: 1 2
# Default-Stop:
# Description: description
### END INIT INFO
# get the directoryname of the script
MYDIR=${0%/*}
# source functions and config
source $MYDIR/settings
case $1 in
build )
make $PMAKE || exit 1
strip_debug
;;
install )
cp id3v2 $CDDIR/usr/bin || exit 1
copy_man
;;
* )
echo "ERROR ($0)"
echo "please add parameter so I know what to do"
exit 1
;;
esac
--- NEW FILE: id3lib ---
#!/bin/bash
# $Source: /cvsroot/devil-linux/build/scripts/id3lib,v $
# $Revision: 1.1 $
# $Date: 2004/08/01 18:27:21 $
#
# http://www.devil-linux.org
# you need the next line, otherwise script won't be executed !!!
# DL-build-system v3
### BEGIN INIT INFO
# Provides: id3lib
# Required-Start: $basebuildtools glibc
# Required-Stop:
# Default-Start: 1
# Default-Stop:
# Description: description
### END INIT INFO
# get the directoryname of the script
MYDIR=${0%/*}
# source functions and config
source $MYDIR/settings
case $1 in
build )
./configure --prefix=/usr || exit 1
make $PMAKE all || exit 1
strip_debug
# we have to install this immediately, because this is a library and could be needed by other sources
make install || exit 1
;;
* )
echo "ERROR ($0)"
echo "please add parameter so I know what to do"
exit 1
;;
esac
|