#!/bin/sh # Prepare files from dist/debian/* for openSUSE Build Service. # Use if need to update files. # Please, run this script from folder /scripts. # usage: # $ ./obs_debian.sh # Note. For stable version enough create an archive debian.tar.gz with folder debian inside and download it. ORIGDEBIAN=../dist/debian/ # Path to original files OBSDEBIAN=../dist/OBS_debian # Path to prepared files FILES=`find $ORIGDEBIAN -type f | xargs ls -1` for file in $FILES do basename=${file##*/} # remove the path from a path-string cp -v -f $file $OBSDEBIAN/debian.${basename} done cp -v -f ../dist/valentina.dsc $OBSDEBIAN/valentina.dsc