mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2024-11-16 07:47:35 +01:00
Added sbo generating tool
This commit is contained in:
parent
915cc201e9
commit
4094b56b24
1 changed files with 17 additions and 0 deletions
17
tools/gen_sbo_txt.sh
Executable file
17
tools/gen_sbo_txt.sh
Executable file
|
@ -0,0 +1,17 @@
|
||||||
|
for i in */*; do
|
||||||
|
NAME=$(echo $i | cut -d "/" -f2)
|
||||||
|
FILES=$(ls $i)
|
||||||
|
source $i/${NAME}.info
|
||||||
|
SHORTDES=$(grep -m 1 $NAME $i/slack-desc | cut -d " " -f2-)
|
||||||
|
echo SLACKBUILD NAME: $NAME
|
||||||
|
echo SLACKBUILD LOCATION: ./$i
|
||||||
|
echo SLACKBUILD FILES: $FILES
|
||||||
|
echo SLACKBUILD VERSION: $VERSION
|
||||||
|
echo SLACKBUILD DOWNLOAD: $DOWNLOAD
|
||||||
|
echo SLACKBUILD DOWNLOAD_x86_64: $DOWNLOAD_x86_64
|
||||||
|
echo SLACKBUILD MD5SUM: $MD5SUM
|
||||||
|
echo SLACKBUILD MD5SUM_x86_64: $MD5SUM_x86_64
|
||||||
|
echo SLACKBUILD REQUIRES: $REQUIRES
|
||||||
|
echo SLACKBUILD SHORT DESCRIPTION: $SHORTDES
|
||||||
|
echo
|
||||||
|
done
|
Loading…
Reference in a new issue