1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
|
#!/bin/bash
set -eu
#
# HEIF codec.
# Copyright (c) 2018 struktur AG, Joachim Bauch <bauch@struktur.de>
#
# This file is part of libheif.
#
# libheif is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# libheif is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with libheif. If not, see <http://www.gnu.org/licenses/>.
#
echo "Checking licenses..."
CHECK_RESULT=`/usr/bin/licensecheck --recursive --ignore 'emscripten|libde265|README\.md|post\.js|/.git/|clusterfuzz-testcase-.*' .`
FOUND=
while read -r line; do
if ( echo $line | grep -q "GENERATED FILE" ); then
# We don't care about generated files
echo "OK: $line"
continue
fi
if ( echo "$line" | grep -q "UNKNOWN" ); then
FILENAME=`echo "$line" | awk '{split($0,a,":");print a[1]}'`
echo "ERROR: $line" >& 2
FOUND=1
continue
fi
echo "OK: $line"
done <<< "${CHECK_RESULT}"
if [ ! -z ${FOUND} ]; then
echo "ERROR: Found files without licenses" >& 2
exit 1
fi
|