Skip to content

Commit 05d8d33

Browse files
Added a build script.
1 parent 47c6f06 commit 05d8d33

File tree

3 files changed

+24
-1
lines changed

3 files changed

+24
-1
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
target

build.sh

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
#!/bin/bash
2+
3+
target="./target/"
4+
pkgSource="./command-status-widget"
5+
zipName="command-status-widget.plasmoid"
6+
7+
function clean(){
8+
if [ -d $target ] ; then
9+
rm -rf $target
10+
fi
11+
}
12+
13+
function build(){
14+
mkdir $target
15+
cd $pkgSource
16+
zip -r ../$target/$zipName ./
17+
cd ..
18+
}
19+
20+
clean
21+
build
22+
echo "Done!"

command-status-widget/metadata.desktop

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ X-Plasma-RequiredExtensions=LaunchApp
1111
X-KDE-PluginInfo-Author=Jason Schindler
1212
X-KDE-PluginInfo-Email[email protected]
1313
X-KDE-PluginInfo-Website=http://www.bucket440.com
14-
X-KDE-PluginInfo-Category=Examples
14+
X-KDE-PluginInfo-Category=Utilities
1515
X-KDE-PluginInfo-Name=com.bucket440.qtquick.widget.command-status
1616
X-KDE-PluginInfo-Version=0.1
1717

0 commit comments

Comments
 (0)