forked from lxqt/lxqt-release-foo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
01-lxqt-build-tools
executable file
·35 lines (26 loc) · 953 Bytes
/
01-lxqt-build-tools
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#!/bin/bash
# copyright: 2016 Alf Gaida <[email protected]>
# 2016 Peter Mattern <[email protected]>
# License: WTFPL-2
# WTFPL-2:
# DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
# TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
# .
# 0. You just DO WHAT THE FUCK YOU WANT TO.
set -e
[ -f /etc/pkg-lxqt-scripts/scripts.conf ] && source /etc/pkg-lxqt-scripts/scripts.conf && CONFIG_FOUND=true
[ -f ~/.pkg-lxqt-scripts.conf ] && source ~/.pkg-lxqt-scripts.conf && CONFIG_FOUND=true
[ -f ./scripts.conf ] && source ./scripts.conf && CONFIG_FOUND=true
if [ "$CONFIG_FOUND" != "true" ]; then
echo 'No configuration found, exit!'
exit 1
fi
source $LOCAL_SCRIPT_PATH/release.sh
PROJECT=lxqt-build-tools
REPO=lxqt-build-tools
TAG=0.3.2
clone "$PROJECT" "$REPO" "$TAG"
changelog "$PROJECT" "$REPO" "$TAG"
tag "$PROJECT" "$REPO" "$TAG"
branch "$PROJECT" "$REPO" "$TAG"
archive "$PROJECT" "$REPO" "$TAG"