mirror of
https://gitlab.com/prpl-foundation/prplos/feeds/feed_gmap.git
synced 2026-01-10 16:07:21 +08:00
Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
2b20eff7ec | ||
|
|
10a415d2e9 | ||
|
|
36e9169746 | ||
|
|
46a2f58ac8 | ||
|
|
2667385c8a | ||
|
|
24fcb2431b | ||
|
|
78c94999eb | ||
|
|
af996a0535 |
16
README.md
16
README.md
@@ -1,13 +1,13 @@
|
||||
# OpenWrt/LEDE packages for usp components
|
||||
Soft At Home Feed of Openwrt/LEDE packages for usp components
|
||||
# OpenWrt/LEDE packages for gmap components
|
||||
Soft At Home Feed of Openwrt/LEDE packages for gmap components
|
||||
|
||||
## How to add the usp Feed to you OpenWrt/LEDE build
|
||||
## How to add the gmap Feed to you OpenWrt/LEDE build
|
||||
At the root of your OpenWrt/LEDE tree, add the following to your `feeds.conf` file:
|
||||
```sh
|
||||
src-git feed_gmap git@gitlab.com:soft.at.home/gmap/buildsystems/openwrt/feed_gmap.git
|
||||
src-git feed_gmap https://gitlab.com/soft.at.home/buildsystems/openwrt/feed_gmap.git;master
|
||||
```
|
||||
Now to add the packages on your usp feed to your OpenWrt/LEDE instance:
|
||||
Now to add the packages on your gmap feed to your OpenWrt/LEDE instance:
|
||||
```sh
|
||||
./scripts/feeds update feed_gmap #retrieve the usp feed from service/update to latest
|
||||
./scripts/feeds install -p feed_gmap #make all of the usp feed packages available to the build
|
||||
```
|
||||
./scripts/feeds update feed_gmap #retrieve the gmap feed from service/update to latest
|
||||
./scripts/feeds install -p feed_gmap #make all of the gmap feed packages available to the build
|
||||
```
|
||||
@@ -16,7 +16,6 @@ COMPONENT:=gmap-mod-ethernet-dev
|
||||
|
||||
PKG_RELEASE:=1
|
||||
|
||||
|
||||
define SAHInit/Install
|
||||
install -d ${PKG_INSTALL_DIR}/etc/rc.d/
|
||||
ln -sfr ${PKG_INSTALL_DIR}/etc/init.d/$(COMPONENT) ${PKG_INSTALL_DIR}/etc/rc.d/S73$(COMPONENT)
|
||||
@@ -37,7 +36,7 @@ define Package/$(PKG_NAME)
|
||||
CATEGORY:=gmap
|
||||
SUBMENU:=Applications
|
||||
TITLE:=$(SHORT_DESCRIPTION)
|
||||
URL:=git@gitlab.com:soft.at.home/gmap/applications/gmap-mod-ethernet-dev
|
||||
URL:=https://gitlab.com/soft.at.home/gmap/applications/gmap-mod-ethernet-dev
|
||||
DEPENDS += +libamxc
|
||||
DEPENDS += +libamxd
|
||||
DEPENDS += +libamxj
|
||||
|
||||
@@ -16,7 +16,6 @@ COMPONENT:=gmap-mod-self
|
||||
|
||||
PKG_RELEASE:=1
|
||||
|
||||
|
||||
define SAHInit/Install
|
||||
install -d ${PKG_INSTALL_DIR}/etc/rc.d/
|
||||
ln -sfr ${PKG_INSTALL_DIR}/etc/init.d/$(COMPONENT) ${PKG_INSTALL_DIR}/etc/rc.d/S72$(COMPONENT)
|
||||
@@ -37,7 +36,7 @@ define Package/$(PKG_NAME)
|
||||
CATEGORY:=gmap
|
||||
SUBMENU:=Applications
|
||||
TITLE:=$(SHORT_DESCRIPTION)
|
||||
URL:=git@gitlab.com:soft.at.home/gmap/applications/gmap-mod-self
|
||||
URL:=https://gitlab.com/soft.at.home/gmap/applications/gmap-mod-self
|
||||
DEPENDS += +libamxc
|
||||
DEPENDS += +libamxj
|
||||
DEPENDS += +libamxd
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=gmap-server
|
||||
PKG_VERSION:=v0.0.9
|
||||
PKG_VERSION:=v0.1.0
|
||||
SHORT_DESCRIPTION:=Service implementing the gmap data model
|
||||
|
||||
PKG_SOURCE:=gmap-server-v0.0.9.tar.gz
|
||||
PKG_SOURCE_URL:=https://gitlab.com/soft.at.home/gmap/applications/gmap-server/-/archive/v0.0.9
|
||||
PKG_HASH:=993ddb9134c647927c7721152e50673858dbec66784bc8050413b4cdd3a4e949
|
||||
PKG_BUILD_DIR:=$(BUILD_DIR)/gmap-server-v0.0.9
|
||||
PKG_SOURCE:=gmap-server-v0.1.0.tar.gz
|
||||
PKG_SOURCE_URL:=https://gitlab.com/soft.at.home/gmap/applications/gmap-server/-/archive/v0.1.0
|
||||
PKG_HASH:=b421a1815ef7b26952842e6a66d6d1347f8472d8ce6984eea70444dc323d96b6
|
||||
PKG_BUILD_DIR:=$(BUILD_DIR)/gmap-server-v0.1.0
|
||||
PKG_MAINTAINER:=Soft At Home <support.opensource@softathome.com>
|
||||
PKG_LICENSE:=BSD-2-Clause-Patent
|
||||
PKG_LICENSE_FILES:=LICENSE
|
||||
@@ -16,7 +16,6 @@ COMPONENT:=gmap-server
|
||||
|
||||
PKG_RELEASE:=1
|
||||
|
||||
|
||||
define SAHInit/Install
|
||||
install -d ${PKG_INSTALL_DIR}/etc/rc.d/
|
||||
ln -sfr ${PKG_INSTALL_DIR}/etc/init.d/$(COMPONENT) ${PKG_INSTALL_DIR}/etc/rc.d/S71$(COMPONENT)
|
||||
@@ -37,7 +36,7 @@ define Package/$(PKG_NAME)
|
||||
CATEGORY:=gmap
|
||||
SUBMENU:=Applications
|
||||
TITLE:=$(SHORT_DESCRIPTION)
|
||||
URL:=git@gitlab.com:soft.at.home/gmap/applications/gmap-server
|
||||
URL:=https://gitlab.com/soft.at.home/gmap/applications/gmap-server
|
||||
DEPENDS += +libamxc
|
||||
DEPENDS += +libamxd
|
||||
DEPENDS += +libamxp
|
||||
|
||||
@@ -14,14 +14,13 @@ PKG_LICENSE_FILES:=LICENSE
|
||||
|
||||
PKG_RELEASE:=1
|
||||
|
||||
|
||||
include $(INCLUDE_DIR)/package.mk
|
||||
|
||||
define Package/$(PKG_NAME)
|
||||
CATEGORY:=gmap
|
||||
SUBMENU:=Configurations
|
||||
TITLE:=$(SHORT_DESCRIPTION)
|
||||
URL:=git@gitlab.com:soft.at.home/gmap/mibs/gmap-mibs-common
|
||||
URL:=https://gitlab.com/soft.at.home/gmap/mibs/gmap-mibs-common
|
||||
DEPENDS += +gmap-server
|
||||
MENU:=1
|
||||
endef
|
||||
|
||||
@@ -1,27 +1,26 @@
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=libgmap-client
|
||||
PKG_VERSION:=v0.1.5
|
||||
PKG_VERSION:=v0.1.6
|
||||
SHORT_DESCRIPTION:=Client library for gmap modules
|
||||
|
||||
PKG_SOURCE:=libgmap-client-v0.1.5.tar.gz
|
||||
PKG_SOURCE_URL:=https://gitlab.com/soft.at.home/gmap/libraries/libgmap-client/-/archive/v0.1.5
|
||||
PKG_HASH:=dd44e0aa7c0af125beceda8a600d773a9c20c3965eb0a4f8d66df733de6752b8
|
||||
PKG_BUILD_DIR:=$(BUILD_DIR)/libgmap-client-v0.1.5
|
||||
PKG_SOURCE:=libgmap-client-v0.1.6.tar.gz
|
||||
PKG_SOURCE_URL:=https://gitlab.com/soft.at.home/gmap/libraries/libgmap-client/-/archive/v0.1.6
|
||||
PKG_HASH:=c9b5537d6fff041894689809a006e8548ecabf8d854f5913c21f7da6069fff23
|
||||
PKG_BUILD_DIR:=$(BUILD_DIR)/libgmap-client-v0.1.6
|
||||
PKG_MAINTAINER:=Soft At Home <support.opensource@softathome.com>
|
||||
PKG_LICENSE:=BSD-2-Clause-Patent
|
||||
PKG_LICENSE_FILES:=LICENSE
|
||||
|
||||
PKG_RELEASE:=1
|
||||
|
||||
|
||||
include $(INCLUDE_DIR)/package.mk
|
||||
|
||||
define Package/$(PKG_NAME)
|
||||
CATEGORY:=gmap
|
||||
SUBMENU:=Libraries
|
||||
TITLE:=$(SHORT_DESCRIPTION)
|
||||
URL:=git@gitlab.com:soft.at.home/gmap/libraries/libgmap-client
|
||||
URL:=https://gitlab.com/soft.at.home/gmap/libraries/libgmap-client
|
||||
DEPENDS += +libamxc
|
||||
DEPENDS += +libamxp
|
||||
DEPENDS += +libamxb
|
||||
|
||||
Reference in New Issue
Block a user