Skip to content
This repository has been archived by the owner on Jan 17, 2020. It is now read-only.

Commit

Permalink
FOGL-2824: Add Package and Description files to north plugins to enab…
Browse files Browse the repository at this point in the history
…le RPM generation (#20)

FOGL-2824: Add Package and Description files to north plugins to enable RPM generation
  • Loading branch information
pintomax committed May 15, 2019
1 parent 41b8266 commit 23809e5
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
1 change: 1 addition & 0 deletions Description
@@ -0,0 +1 @@
Http North C plugin package for FogLAMP.
26 changes: 26 additions & 0 deletions Package
@@ -0,0 +1,26 @@
# A set of variables that define how we package this repository
#
plugin_name=httpc
plugin_type=north
plugin_install_dirname=HttpNorthC

# Now build up the runtime requirements list. This has 3 components
# 1. Generic packages we depend on in all architectures and package managers
# 2. Architecture specific packages we depend on
# 3. Package manager specific packages we depend on
requirements="foglamp"

case "$arch" in
x86_64)
;;
armhf)
;;
aarch64)
;;
esac
case "$package_manager" in
deb)
;;
rpm)
;;
esac

0 comments on commit 23809e5

Please sign in to comment.