You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
610 B
18 lines
610 B
6 years ago
|
import 'compile/configure'
|
||
|
|
||
|
name=sdcc
|
||
|
version=3.7.0
|
||
|
|
||
|
dlextract "https://sourceforge.net/projects/$name/files/$name/$version/$name-src-$version.tar.bz2" \
|
||
|
'76cc85d7ff27c46b930d309ea940a02f'
|
||
|
_
|
||
|
|
||
|
cd "$name"
|
||
|
compile_configure -- --without-ccache
|
||
|
rm -rf "$dir_install/$dir_prefix/$dir_data/$name"/lib/src/pic16/*/.deps
|
||
|
rm -rf "$dir_install/$dir_prefix/$dir_data/$name"/non-free/lib/src/pic16/*/.deps
|
||
|
find "$dir_install/$dir_prefix/$dir_data/$name/lib/src" -empty -delete
|
||
|
find "$dir_install/$dir_prefix/$dir_data/$name/non-free/lib/src" -empty -delete
|
||
|
|
||
|
# vim:set tabstop=4 shiftwidth=4 syntax=sh expandtab:
|