blob: 9781781e636c6bf2437f8b4bd7edd77e324fdbbd (
plain)
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
36
37
|
# SPDX-FileCopyrightText: 2021 René de Hesselle <dehesselle@web.de>
#
# SPDX-License-Identifier: GPL-2.0-or-later
### description ################################################################
# Convert png to icns.
### shellcheck #################################################################
# shellcheck shell=bash # no shebang as this file is intended to be sourced
### dependencies ###############################################################
# Nothing here.
### variables ##################################################################
# https://github.com/bitboss-ca/png2icns
PNG2ICNS_VER=0.1
PNG2ICNS_URL=https://github.com/bitboss-ca/png2icns/archive/\
v$PNG2ICNS_VER.tar.gz
### functions ##################################################################
function png2icns_install
{
local archive
archive=$PKG_DIR/$(basename $PNG2ICNS_URL)
curl -o "$archive" -L "$PNG2ICNS_URL"
tar -C "$SRC_DIR" -xf "$archive"
ln -s "$SRC_DIR"/png2icns-$PNG2ICNS_VER/png2icns.sh "$BIN_DIR"
}
### main #######################################################################
# Nothing here.
|