blob: 41023db5e55e06bcf136b361ba869eee8502ead2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# By eroen, 2015
# Distributed under the terms of the ISC licence
# $Header: $
#
# Original Author: eroen
# Purpose: Provide convenience functions for packaging software obtained from
# Humble Bundle
#
EXPORT_FUNCTIONS pkg_nofetch
humblebundle_pkg_nofetch() {
einfo "Before installing $PN you need to obtain"
einfo " $A"
if [[ -n $HOMEPAGE ]]; then
einfo "from $HOMEPAGE or https://www.humblebundle.com"
else
einfo "from https://www.humblebundle.com"
fi
einfo "and place it in"
einfo " $DISTDIR"
}
|