update buildroot - work in progress development
[cmdllinux.git] / buildroot / _buildroot / buildroot / description / grep_pkgdesc_void.sh
blob28fff61c04340cc72ae73a8cc62e05f95a3952dd
1 #void
2 echo -n > _pkgdesc_void.txt
3 find -mindepth 1 -maxdepth 1 -type d | \
4 while read line; do
5 if [ -e $line/template ]; then
6 eval $(grep "^short_desc=" $line/template)
7 PKG=${line##*/}
8 echo "${PKG}:$short_desc" >> _pkgdesc_void.txt
9 fi
10 done