generated from general-packages/pika-pkg-template
Update main.sh
This commit is contained in:
parent
b1d070f03e
commit
e4e7cf7b36
10
main.sh
10
main.sh
@ -30,23 +30,23 @@ cd $(find ./ -maxdepth 1 -name "$PIKA_PACKAGE_NAME*" -type d | head -1)
|
||||
# DO PATCHING
|
||||
if git clone --depth=1 https://git.pika-os.com/upstream-patches/"$PIKA_PACKAGE_NAME".git ../patches
|
||||
then
|
||||
if [ -f ../series ]
|
||||
if [ -f ../patches/series ]
|
||||
then
|
||||
if cat ./debian/source/format | grep 'quilt'
|
||||
then
|
||||
cp -rvf ../patches/patches ./debian/
|
||||
cat ../series >> ./debian/patches/series
|
||||
cat ../patches/series >> ./debian/patches/series
|
||||
else
|
||||
for i in $(cat ../series)
|
||||
for i in $(cat ../patches/series)
|
||||
do
|
||||
echo "Applying Patch: $i"
|
||||
patch -Np1 -i ../patches/patches/$i || bash -c "echo "Applying Patch $i Failed!" && exit 2"
|
||||
done
|
||||
fi
|
||||
fi
|
||||
if [ -f ../native-series ]
|
||||
if [ -f ../patches/native-series ]
|
||||
then
|
||||
for i in $(cat ../native-series)
|
||||
for i in $(cat ../patches/native-series)
|
||||
do
|
||||
echo "Applying Patch: $i"
|
||||
patch -Np1 -i ../patches/patches/$i || bash -c "echo "Applying Patch $i Failed!" && exit 2"
|
||||
|
Loading…
Reference in New Issue
Block a user