Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- usage()
- {
- cat << EOF
- usage: $0 options
- Converts rpm spec file to bitbake recipe format.
- OPTIONS:
- -f Don't search for package files
- -h Show this message
- -i Input file this should be a *.spec file
- -o Output file eg: somefile.bb, leave blank to use STDOUT
- EOF
- }
- OUTFILE=
- SPECFILE=
- PKGFILES=
- while getopts “fh:i:o:” OPTION
- do
- case $OPTION in
- f)
- PKGFILES=1
- ;;
- h)
- usage
- exit 1
- ;;
- i)
- SPECFILE=$OPTARG
- ;;
- o)
- OUTFILE=$OPTARG
- ;;
- ?)
- usage
- exit
- ;;
- esac
- done
- if [[ -z $SPECFILE ]]
- then
- usage
- exit 1
- fi
- if [[ -z $OUTFILE ]]
- then
- OUTFILE="$$tmpfile.~"
- fi
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement