]> git.wh0rd.org - chrome-ext/wake-on-lan.git/blob - makedist.sh
add port tips to the port field tooltip text
[chrome-ext/wake-on-lan.git] / makedist.sh
1 #!/bin/bash -e
2 # Copyright (c) 2013 The Chromium OS Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file.
5
6 case $1 in
7 -h|--help)
8 echo "Usage: $0 [rev]"
9 exit 0
10 ;;
11 esac
12
13 json_value() {
14 local key=$1
15 sed -n -r \
16 -e '/^[[:space:]]*"'"${key}"'"/s|.*:[[:space:]]*"([^"]*)",?$|\1|p' \
17 manifest.json
18 }
19
20 PN=$(json_value name | sed 's:[[:space:]/]:_:g' | tr '[:upper:]' '[:lower:]')
21 if [[ ${PN} == "__msg_name__" ]] ; then
22 PN=$(basename "$(pwd)")
23 fi
24 PV=$(json_value version)
25 rev=${1:-0}
26 PVR="${PV}.${rev}"
27 P="${PN}-${PVR}"
28
29 rm -rf "${P}"
30 mkdir "${P}"
31
32 while read line ; do
33 [[ ${line} == */* ]] && mkdir -p "${P}/${line%/*}"
34 ln "${line}" "${P}/${line}"
35 done < <(sed 's:#.*::' manifest.files)
36 cp Makefile manifest.files manifest.json "${P}/"
37
38 make -C "${P}" -j {css,js}-min
39 while read line ; do
40 mv "${line}.min" "${line}"
41 done < <(find "${P}" -name '*.js' -o -name '*.css')
42 rm "${P}"/{manifest.files,Makefile}
43
44 sed -i \
45 -e '/"version"/s:"[^"]*",:"'${PVR}'",:' \
46 "${P}/manifest.json"
47
48 zip="${P}.zip"
49 rm -f "${zip}"
50 zip -r "${zip}" "${P}"
51 rm -rf "${P}"
52 du -b "${zip}"