summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authoreroen2015-08-15 22:53:57 +0200
committereroen2016-03-29 13:03:58 +0200
commit4eedbb65700efd9424c6ff51de56f149d2946949 (patch)
treecf99f6df3ec048bd0f440f50a83191bca7cd7308 /eclass
parent76f32946ddec6efbab66022e1c672e1f35f9c390 (diff)
downloaderoen-overlay-4eedbb65700efd9424c6ff51de56f149d2946949.tar.gz
eroen-overlay-4eedbb65700efd9424c6ff51de56f149d2946949.tar.bz2
eroen-overlay-4eedbb65700efd9424c6ff51de56f149d2946949.tar.xz
Add humblebundle.eclass
Diffstat (limited to 'eclass')
-rw-r--r--eclass/humblebundle.eclass23
1 files changed, 23 insertions, 0 deletions
diff --git a/eclass/humblebundle.eclass b/eclass/humblebundle.eclass
new file mode 100644
index 00000000..41023db5
--- /dev/null
+++ b/eclass/humblebundle.eclass
@@ -0,0 +1,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"
+}