parent
ec4530c495
commit
4d1b7bc840
@ -1,3 +1 @@
|
|||||||
*.png
|
export
|
||||||
*.json
|
|
||||||
*.zip
|
|
||||||
|
@ -0,0 +1,13 @@
|
|||||||
|
Copyright 2019 Feuerfuchs <me@feuerfuchs.dev> (https://www.feuerfuchs.dev/)
|
||||||
|
|
||||||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
you may not use this file except in compliance with the License.
|
||||||
|
You may obtain a copy of the License at
|
||||||
|
|
||||||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
|
Unless required by applicable law or agreed to in writing, software
|
||||||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
See the License for the specific language governing permissions and
|
||||||
|
limitations under the License.
|
@ -1,18 +1,26 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
FILELIST=`find . -type f -iname '*.png' -exec sh -c 'x=${0#./}; printf "%s:%s|" ${x%.png} $x' {} \;`
|
mkdir -p 'export'
|
||||||
|
find . -type f -iname '*.svg' -print0 | parallel -0 'x={.}; inkscape -z -e "export/${x#./}.png" "{}"' {} \;
|
||||||
|
cp LICENSE export/
|
||||||
|
|
||||||
|
cd export
|
||||||
|
|
||||||
|
FILELIST=`find . -type f -iname '*.png' -exec sh -c 'x=${0#./}; printf "%s:%s|" ${x%.png} $x' {} \;`
|
||||||
jq -Rn 'input | split("|") | map(split(":") | { key: .[0], value: .[1] }) | from_entries' <<< "${FILELIST%|}" > blobfox.json
|
jq -Rn 'input | split("|") | map(split(":") | { key: .[0], value: .[1] }) | from_entries' <<< "${FILELIST%|}" > blobfox.json
|
||||||
|
|
||||||
rm blobfox.zip
|
rm -f blobfox.zip
|
||||||
zip blobfox.zip *.png
|
zip blobfox.zip *.png
|
||||||
|
zip blobfox.zip LICENSE
|
||||||
CHECKSUM=`sha256sum -z blobfox.zip | awk '{ print $1 }'`
|
CHECKSUM=`sha256sum -z blobfox.zip | awk '{ print $1 }'`
|
||||||
|
|
||||||
printf '{
|
printf '{
|
||||||
"src": "https://git.pleroma.social/pleroma/emoji-index/raw/master/packs/blobfox.zip",
|
"blobfox": {
|
||||||
"src_sha256": "%s",
|
"description": "Like Blobcat, but with foxes",
|
||||||
"license": "Apache 2.0",
|
"files": "blobfox.json",
|
||||||
"files": "blobfox.json",
|
"homepage": "https://www.feuerfuchs.dev/projects/blobfox-emojis/",
|
||||||
"description": "Like Blobcat, except with foxes"
|
"src": "https://www.feuerfuchs.dev/projects/blobfox-emojis/blobfox.zip",
|
||||||
}' $CHECKSUM > index.json
|
"src_sha256": "%s",
|
||||||
|
"license": "Apache 2.0"
|
||||||
|
}
|
||||||
|
}' $CHECKSUM > manifest.json
|
||||||
|
Loading…
Reference in new issue