mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-24 09:27:31 +09:00
Dactyloidae Milsko Widget initial commit
This commit is contained in:
parent
2e7355c0ef
commit
91b45c0d14
410 changed files with 204246 additions and 0 deletions
20
widget/milsko/milskosrc/tools/archive.sh
Normal file
20
widget/milsko/milskosrc/tools/archive.sh
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
#!/bin/sh
|
||||
MAKE=make
|
||||
if which gmake >/dev/null 2>&1; then
|
||||
MAKE=gmake
|
||||
fi
|
||||
VERSION=`cat include/Mw/Version.h | grep -E 'MwVERSION' | grep -oE '"[^"]+"' | sed 's/"//g'`
|
||||
|
||||
$MAKE clean
|
||||
OLD=`pwd`
|
||||
rm -rf /tmp/milsko-$VERSION *.tar.gz
|
||||
mkdir -p /tmp/milsko-$VERSION
|
||||
|
||||
cp -rf * /tmp/milsko-$VERSION/
|
||||
|
||||
cd /tmp
|
||||
|
||||
tar czvf /tmp/milsko-$VERSION.tar.gz milsko-$VERSION
|
||||
|
||||
rm -rf /tmp/milsko-$VERSION
|
||||
mv /tmp/milsko-$VERSION.tar.gz $OLD/
|
||||
Loading…
Add table
Add a link
Reference in a new issue