mirror of
https://gitlab.com/prpl-foundation/prplos/feeds/feed_amx.git
synced 2025-12-20 01:02:01 +08:00
Compare commits
41 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a00f0d9161 | ||
|
|
ab80cd9e36 | ||
|
|
6d2f3d54fa | ||
|
|
81a57a8cdf | ||
|
|
22ef08738f | ||
|
|
59381c842e | ||
|
|
2e1553b841 | ||
|
|
c27d3cde8a | ||
|
|
982cfbf4a1 | ||
|
|
8aba33c529 | ||
|
|
e381ee0259 | ||
|
|
a82baa659b | ||
|
|
5d1e8adc37 | ||
|
|
932d82b7f6 | ||
|
|
2497eb3bbd | ||
|
|
54a0cf46d5 | ||
|
|
86d1767445 | ||
|
|
2536fd1a6a | ||
|
|
5a195b68e2 | ||
|
|
8b523162ca | ||
|
|
577054371d | ||
|
|
b548b350b9 | ||
|
|
2e47675c3a | ||
|
|
694e44c345 | ||
|
|
03f228a28a | ||
|
|
3bd72be51f | ||
|
|
bd37819b83 | ||
|
|
db7bf54282 | ||
|
|
bcdd3d7a4d | ||
|
|
5106879f6e | ||
|
|
baf06160f4 | ||
|
|
04011c1a98 | ||
|
|
bf64e0133a | ||
|
|
8551ca4ac8 | ||
|
|
bbb2c0abee | ||
|
|
0647066e75 | ||
|
|
cdf89bce8a | ||
|
|
1ce1baca85 | ||
|
|
979a0f6176 | ||
|
|
07fa28d6e0 | ||
|
|
f350ad8af3 |
@@ -1,16 +0,0 @@
|
||||
config PACKAGE_amxb-inspect
|
||||
tristate
|
||||
select SAH_SERVICES_AMXB_INSPECT
|
||||
|
||||
if PACKAGE_amxb-inspect
|
||||
|
||||
menu "Select amxb-inspect build options"
|
||||
depends on PACKAGE_amxb-inspect
|
||||
|
||||
config SAH_SERVICES_AMXB_INSPECT
|
||||
bool "Build amxb-inspect application"
|
||||
default y
|
||||
|
||||
endmenu
|
||||
|
||||
endif
|
||||
@@ -4,21 +4,15 @@ PKG_NAME:=amxb-inspect
|
||||
PKG_VERSION:=v1.0.2
|
||||
SHORT_DESCRIPTION:=Ambiorix Backend inspector/validation tool
|
||||
|
||||
PKG_SOURCE_PROTO:=git
|
||||
PKG_SOURCE_VERSION:=v1.0.2
|
||||
PKG_SOURCE_URL:=https://gitlab.com/soft.at.home/ambiorix/applications/amxb-inspect.git
|
||||
PKG_MIRROR_HASH:=d7956ef21dc1a5d4bd5a5aeb77d8f592c1a1bb1f96a150629b09ccaebe72eabd
|
||||
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
||||
PKG_SOURCE:=amxb-inspect-v1.0.2.tar.gz
|
||||
PKG_SOURCE_URL:=https://gitlab.com/soft.at.home/ambiorix/applications/amxb-inspect/-/archive/v1.0.2
|
||||
PKG_HASH:=51e7f28a8c371a32217e233bb77700ba68d1f40b87c6938b1de73129f153899f
|
||||
PKG_BUILD_DIR:=$(BUILD_DIR)/amxb-inspect-v1.0.2
|
||||
PKG_MAINTAINER:=Soft At Home <support.opensource@softathome.com>
|
||||
PKG_LICENSE:=BSD-2-Clause-Patent
|
||||
PKG_LICENSE_FILES:=LICENSE
|
||||
|
||||
COMPONENT:=amxb-inspect
|
||||
|
||||
PKG_RELEASE?=1
|
||||
PKG_INSTALL:=1
|
||||
|
||||
PKG_BUILD_DEPENDS += libamxb
|
||||
PKG_RELEASE:=1
|
||||
|
||||
include $(INCLUDE_DIR)/package.mk
|
||||
|
||||
@@ -32,7 +26,7 @@ define Package/$(PKG_NAME)
|
||||
endef
|
||||
|
||||
define Package/$(PKG_NAME)/description
|
||||
"Ambiorix Backend inspector/validation tool"
|
||||
Ambiorix Backend inspector/validation tool
|
||||
endef
|
||||
|
||||
define Build/Compile
|
||||
@@ -44,7 +38,6 @@ define Build/Install
|
||||
find $(PKG_INSTALL_DIR) -name *.a -exec rm {} +;
|
||||
find $(PKG_INSTALL_DIR) -name *.h -exec rm {} +;
|
||||
find $(PKG_INSTALL_DIR) -name *.pc -exec rm {} +;
|
||||
|
||||
endef
|
||||
|
||||
define Build/InstallDev
|
||||
@@ -55,8 +48,4 @@ define Package/$(PKG_NAME)/install
|
||||
$(CP) $(PKG_INSTALL_DIR)/* $(1)/
|
||||
endef
|
||||
|
||||
define Package/$(PKG_NAME)/config
|
||||
source "$(SOURCE)/Config.in"
|
||||
endef
|
||||
|
||||
$(eval $(call BuildPackage,$(PKG_NAME)))
|
||||
|
||||
@@ -1,16 +0,0 @@
|
||||
config PACKAGE_amxo-cg
|
||||
tristate
|
||||
select SAH_SERVICES_AMXO_CG
|
||||
|
||||
if PACKAGE_amxo-cg
|
||||
|
||||
menu "Select amxo-cg build options"
|
||||
depends on PACKAGE_amxo-cg
|
||||
|
||||
config SAH_SERVICES_AMXO_CG
|
||||
bool "Build amxo-cg application"
|
||||
default y
|
||||
|
||||
endmenu
|
||||
|
||||
endif
|
||||
@@ -1,26 +1,19 @@
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=amxo-cg
|
||||
PKG_VERSION:=v1.0.3
|
||||
PKG_VERSION:=v1.0.4
|
||||
SHORT_DESCRIPTION:=Object Definition Language Compiler/Generator
|
||||
|
||||
PKG_SOURCE_PROTO:=git
|
||||
PKG_SOURCE_VERSION:=v1.0.3
|
||||
PKG_SOURCE_URL:=https://gitlab.com/soft.at.home/ambiorix/applications/amxo-cg.git
|
||||
PKG_MIRROR_HASH:=cefc2cfa1fd2280f782d106a6330dacc0404fd1508a8b4a78a5c1a7a6d521677
|
||||
PKG_SOURCE:=amxo-cg-v1.0.4.tar.gz
|
||||
PKG_SOURCE_URL:=https://gitlab.com/soft.at.home/ambiorix/applications/amxo-cg/-/archive/v1.0.4
|
||||
PKG_HASH:=e746ca6db15a418af2eb30f308edef50e9ba12afd15123098fb49462484011ba
|
||||
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
||||
PKG_MAINTAINER:=Soft At Home <support.opensource@softathome.com>
|
||||
PKG_LICENSE:=BSD-2-Clause-Patent
|
||||
PKG_LICENSE_FILES:=LICENSE
|
||||
|
||||
COMPONENT:=amxo-cg
|
||||
PKG_RELEASE:=1
|
||||
|
||||
PKG_RELEASE?=1
|
||||
PKG_INSTALL:=1
|
||||
|
||||
PKG_BUILD_DEPENDS += libamxc
|
||||
PKG_BUILD_DEPENDS += libamxd
|
||||
PKG_BUILD_DEPENDS += libamxo
|
||||
|
||||
include $(INCLUDE_DIR)/package.mk
|
||||
|
||||
@@ -36,7 +29,7 @@ define Package/$(PKG_NAME)
|
||||
endef
|
||||
|
||||
define Package/$(PKG_NAME)/description
|
||||
"Object Definition Language Compiler/Generator"
|
||||
Object Definition Language Compiler/Generator
|
||||
endef
|
||||
|
||||
define Build/Compile
|
||||
@@ -48,7 +41,6 @@ define Build/Install
|
||||
find $(PKG_INSTALL_DIR) -name *.a -exec rm {} +;
|
||||
find $(PKG_INSTALL_DIR) -name *.h -exec rm {} +;
|
||||
find $(PKG_INSTALL_DIR) -name *.pc -exec rm {} +;
|
||||
|
||||
endef
|
||||
|
||||
define Build/InstallDev
|
||||
@@ -59,8 +51,4 @@ define Package/$(PKG_NAME)/install
|
||||
$(CP) $(PKG_INSTALL_DIR)/* $(1)/
|
||||
endef
|
||||
|
||||
define Package/$(PKG_NAME)/config
|
||||
source "$(SOURCE)/Config.in"
|
||||
endef
|
||||
|
||||
$(eval $(call BuildPackage,$(PKG_NAME)))
|
||||
|
||||
@@ -1,16 +0,0 @@
|
||||
config PACKAGE_amxrt
|
||||
tristate
|
||||
select SAH_SERVICES_AMXRT
|
||||
|
||||
if PACKAGE_amxrt
|
||||
|
||||
menu "Select amxrt build options"
|
||||
depends on PACKAGE_amxrt
|
||||
|
||||
config SAH_SERVICES_AMXRT
|
||||
bool "Build libamxrt application"
|
||||
default y
|
||||
|
||||
endmenu
|
||||
|
||||
endif
|
||||
@@ -4,26 +4,15 @@ PKG_NAME:=amxrt
|
||||
PKG_VERSION:=v1.0.2
|
||||
SHORT_DESCRIPTION:=Data model runtime
|
||||
|
||||
PKG_SOURCE_PROTO:=git
|
||||
PKG_SOURCE_VERSION:=v1.0.2
|
||||
PKG_SOURCE_URL:=https://gitlab.com/soft.at.home/ambiorix/applications/amxrt.git
|
||||
PKG_MIRROR_HASH:=5d8c7386ff212dc5f742c4601a8fe535c2dc05e31650ef6f99cdd1754afb66de
|
||||
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
||||
PKG_SOURCE:=amxrt-v1.0.2.tar.gz
|
||||
PKG_SOURCE_URL:=https://gitlab.com/soft.at.home/ambiorix/applications/amxrt/-/archive/v1.0.2
|
||||
PKG_HASH:=4de4f8d45e3ceb31b436229bd5d0860f108a5b4896b745f1d8fa2ab969b325fd
|
||||
PKG_BUILD_DIR:=$(BUILD_DIR)/amxrt-v1.0.2
|
||||
PKG_MAINTAINER:=Soft At Home <support.opensource@softathome.com>
|
||||
PKG_LICENSE:=BSD-2-Clause-Patent
|
||||
PKG_LICENSE_FILES:=LICENSE
|
||||
|
||||
COMPONENT:=amxrt
|
||||
|
||||
PKG_RELEASE?=1
|
||||
PKG_INSTALL:=1
|
||||
|
||||
PKG_BUILD_DEPENDS += libamxc
|
||||
PKG_BUILD_DEPENDS += libamxd
|
||||
PKG_BUILD_DEPENDS += libamxp
|
||||
PKG_BUILD_DEPENDS += libamxb
|
||||
PKG_BUILD_DEPENDS += libamxo
|
||||
PKG_BUILD_DEPENDS += libevent2
|
||||
PKG_RELEASE:=1
|
||||
|
||||
include $(INCLUDE_DIR)/package.mk
|
||||
|
||||
@@ -42,7 +31,7 @@ define Package/$(PKG_NAME)
|
||||
endef
|
||||
|
||||
define Package/$(PKG_NAME)/description
|
||||
"Data model runtime"
|
||||
Data model runtime
|
||||
endef
|
||||
|
||||
define Build/Compile
|
||||
@@ -54,7 +43,6 @@ define Build/Install
|
||||
find $(PKG_INSTALL_DIR) -name *.a -exec rm {} +;
|
||||
find $(PKG_INSTALL_DIR) -name *.h -exec rm {} +;
|
||||
find $(PKG_INSTALL_DIR) -name *.pc -exec rm {} +;
|
||||
|
||||
endef
|
||||
|
||||
define Build/InstallDev
|
||||
@@ -65,8 +53,4 @@ define Package/$(PKG_NAME)/install
|
||||
$(CP) $(PKG_INSTALL_DIR)/* $(1)/
|
||||
endef
|
||||
|
||||
define Package/$(PKG_NAME)/config
|
||||
source "$(SOURCE)/Config.in"
|
||||
endef
|
||||
|
||||
$(eval $(call BuildPackage,$(PKG_NAME)))
|
||||
|
||||
@@ -1,16 +0,0 @@
|
||||
config PACKAGE_libamxb
|
||||
tristate
|
||||
select SAH_LIB_AMXB
|
||||
|
||||
if PACKAGE_libamxb
|
||||
|
||||
menu "Select libamxb build options"
|
||||
depends on PACKAGE_libamxb
|
||||
|
||||
config SAH_LIB_AMXB
|
||||
bool "Build libamxb"
|
||||
default y
|
||||
|
||||
endmenu
|
||||
|
||||
endif
|
||||
@@ -1,27 +1,18 @@
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=libamxb
|
||||
PKG_VERSION:=v3.0.2
|
||||
PKG_VERSION:=v3.1.1
|
||||
SHORT_DESCRIPTION:=Bus agnostic C API (mediator)
|
||||
|
||||
PKG_SOURCE_PROTO:=git
|
||||
PKG_SOURCE_VERSION:=v3.0.2
|
||||
PKG_SOURCE_URL:=https://gitlab.com/soft.at.home/ambiorix/libraries/libamxb.git
|
||||
PKG_MIRROR_HASH:=7f50fd3366e296ab4ec51ba1a962c7178ae124bf6d6480035dcd1659c4516cbc
|
||||
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
||||
PKG_SOURCE:=libamxb-v3.1.1.tar.gz
|
||||
PKG_SOURCE_URL:=https://gitlab.com/soft.at.home/ambiorix/libraries/libamxb/-/archive/v3.1.1
|
||||
PKG_HASH:=3fbf9b487380507eb0e126c59552a6a2f9eb3332a5b415009b6dc88ed36974f8
|
||||
PKG_BUILD_DIR:=$(BUILD_DIR)/libamxb-v3.1.1
|
||||
PKG_MAINTAINER:=Soft At Home <support.opensource@softathome.com>
|
||||
PKG_LICENSE:=BSD-2-Clause-Patent
|
||||
PKG_LICENSE_FILES:=LICENSE
|
||||
|
||||
COMPONENT:=libamxb
|
||||
|
||||
PKG_RELEASE?=1
|
||||
PKG_INSTALL:=1
|
||||
|
||||
PKG_BUILD_DEPENDS += libamxc
|
||||
PKG_BUILD_DEPENDS += libamxp
|
||||
PKG_BUILD_DEPENDS += libamxd
|
||||
PKG_BUILD_DEPENDS += uriparser
|
||||
PKG_RELEASE:=1
|
||||
|
||||
include $(INCLUDE_DIR)/package.mk
|
||||
|
||||
@@ -38,7 +29,7 @@ define Package/$(PKG_NAME)
|
||||
endef
|
||||
|
||||
define Package/$(PKG_NAME)/description
|
||||
"Bus agnostic C API (mediator)"
|
||||
Bus agnostic C API (mediator)
|
||||
endef
|
||||
|
||||
define Build/Compile
|
||||
@@ -50,7 +41,6 @@ define Build/Install
|
||||
find $(PKG_INSTALL_DIR) -name *.a -exec rm {} +;
|
||||
find $(PKG_INSTALL_DIR) -name *.h -exec rm {} +;
|
||||
find $(PKG_INSTALL_DIR) -name *.pc -exec rm {} +;
|
||||
|
||||
endef
|
||||
|
||||
define Build/InstallDev
|
||||
@@ -61,8 +51,4 @@ define Package/$(PKG_NAME)/install
|
||||
$(CP) $(PKG_INSTALL_DIR)/* $(1)/
|
||||
endef
|
||||
|
||||
define Package/$(PKG_NAME)/config
|
||||
source "$(SOURCE)/Config.in"
|
||||
endef
|
||||
|
||||
$(eval $(call BuildPackage,$(PKG_NAME)))
|
||||
|
||||
@@ -1,16 +0,0 @@
|
||||
config PACKAGE_libamxc
|
||||
tristate
|
||||
select SAH_LIB_AMXC
|
||||
|
||||
if PACKAGE_libamxc
|
||||
|
||||
menu "Select libamxc build options"
|
||||
depends on PACKAGE_libamxc
|
||||
|
||||
config SAH_LIB_AMXC
|
||||
bool "Build libamxc"
|
||||
default y
|
||||
|
||||
endmenu
|
||||
|
||||
endif
|
||||
@@ -1,23 +1,18 @@
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=libamxc
|
||||
PKG_VERSION:=v1.0.12
|
||||
PKG_VERSION:=v1.0.14
|
||||
SHORT_DESCRIPTION:=Libamxc is a library containing data containers, implemented in ansi C (C99)
|
||||
|
||||
PKG_SOURCE_PROTO:=git
|
||||
PKG_SOURCE_VERSION:=v1.0.12
|
||||
PKG_SOURCE_URL:=https://gitlab.com/soft.at.home/ambiorix/libraries/libamxc.git
|
||||
PKG_MIRROR_HASH:=f3c41f3b6de555e6369cee4f02e3030e7f29a1c9c5c000c3818032e66fb6e100
|
||||
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
||||
PKG_SOURCE:=libamxc-v1.0.14.tar.gz
|
||||
PKG_SOURCE_URL:=https://gitlab.com/soft.at.home/ambiorix/libraries/libamxc/-/archive/v1.0.14
|
||||
PKG_HASH:=365cab7abc78ac9cafc37724d67d18c55fd479188b5253c395b8bd85cc98d2d4
|
||||
PKG_BUILD_DIR:=$(BUILD_DIR)/libamxc-v1.0.14
|
||||
PKG_MAINTAINER:=Soft At Home <support.opensource@softathome.com>
|
||||
PKG_LICENSE:=BSD-2-Clause-Patent
|
||||
PKG_LICENSE_FILES:=LICENSE
|
||||
|
||||
COMPONENT:=libamxc
|
||||
|
||||
PKG_RELEASE?=1
|
||||
PKG_INSTALL:=1
|
||||
|
||||
PKG_RELEASE:=1
|
||||
|
||||
include $(INCLUDE_DIR)/package.mk
|
||||
|
||||
@@ -30,7 +25,7 @@ define Package/$(PKG_NAME)
|
||||
endef
|
||||
|
||||
define Package/$(PKG_NAME)/description
|
||||
"Libamxc is a library containing data containers, implemented in ansi C (C99)."
|
||||
Libamxc is a library containing data containers, implemented in ansi C (C99).
|
||||
endef
|
||||
|
||||
define Build/Compile
|
||||
@@ -42,7 +37,6 @@ define Build/Install
|
||||
find $(PKG_INSTALL_DIR) -name *.a -exec rm {} +;
|
||||
find $(PKG_INSTALL_DIR) -name *.h -exec rm {} +;
|
||||
find $(PKG_INSTALL_DIR) -name *.pc -exec rm {} +;
|
||||
|
||||
endef
|
||||
|
||||
define Build/InstallDev
|
||||
@@ -53,8 +47,4 @@ define Package/$(PKG_NAME)/install
|
||||
$(CP) $(PKG_INSTALL_DIR)/* $(1)/
|
||||
endef
|
||||
|
||||
define Package/$(PKG_NAME)/config
|
||||
source "$(SOURCE)/Config.in"
|
||||
endef
|
||||
|
||||
$(eval $(call BuildPackage,$(PKG_NAME)))
|
||||
|
||||
@@ -1,16 +0,0 @@
|
||||
config PACKAGE_libamxd
|
||||
tristate
|
||||
select SAH_LIB_AMXD
|
||||
|
||||
if PACKAGE_libamxd
|
||||
|
||||
menu "Select libamxd build options"
|
||||
depends on PACKAGE_libamxd
|
||||
|
||||
config SAH_LIB_AMXD
|
||||
bool "Build libamxd"
|
||||
default y
|
||||
|
||||
endmenu
|
||||
|
||||
endif
|
||||
@@ -1,25 +1,18 @@
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=libamxd
|
||||
PKG_VERSION:=v2.0.1
|
||||
PKG_VERSION:=v2.0.9
|
||||
SHORT_DESCRIPTION:=Data model C-API
|
||||
|
||||
PKG_SOURCE_PROTO:=git
|
||||
PKG_SOURCE_VERSION:=v2.0.1
|
||||
PKG_SOURCE_URL:=https://gitlab.com/soft.at.home/ambiorix/libraries/libamxd.git
|
||||
PKG_MIRROR_HASH:=0e780c94ba2fcb2337c9b76867afd3ddac3a82337f4d1e779e4d48ec0a58d115
|
||||
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
||||
PKG_SOURCE:=libamxd-v2.0.9.tar.gz
|
||||
PKG_SOURCE_URL:=https://gitlab.com/soft.at.home/ambiorix/libraries/libamxd/-/archive/v2.0.9
|
||||
PKG_HASH:=b5be8759222302aecf901adf6ef03fe0fc8aaf854a0ebcc0d6d0aa81aefdbcbe
|
||||
PKG_BUILD_DIR:=$(BUILD_DIR)/libamxd-v2.0.9
|
||||
PKG_MAINTAINER:=Soft At Home <support.opensource@softathome.com>
|
||||
PKG_LICENSE:=BSD-2-Clause-Patent
|
||||
PKG_LICENSE_FILES:=LICENSE
|
||||
|
||||
COMPONENT:=libamxd
|
||||
|
||||
PKG_RELEASE?=1
|
||||
PKG_INSTALL:=1
|
||||
|
||||
PKG_BUILD_DEPENDS += libamxc
|
||||
PKG_BUILD_DEPENDS += libamxp
|
||||
PKG_RELEASE:=1
|
||||
|
||||
include $(INCLUDE_DIR)/package.mk
|
||||
|
||||
@@ -34,7 +27,7 @@ define Package/$(PKG_NAME)
|
||||
endef
|
||||
|
||||
define Package/$(PKG_NAME)/description
|
||||
"Data model C-API"
|
||||
Data model C-API
|
||||
endef
|
||||
|
||||
define Build/Compile
|
||||
@@ -46,7 +39,6 @@ define Build/Install
|
||||
find $(PKG_INSTALL_DIR) -name *.a -exec rm {} +;
|
||||
find $(PKG_INSTALL_DIR) -name *.h -exec rm {} +;
|
||||
find $(PKG_INSTALL_DIR) -name *.pc -exec rm {} +;
|
||||
|
||||
endef
|
||||
|
||||
define Build/InstallDev
|
||||
@@ -57,8 +49,4 @@ define Package/$(PKG_NAME)/install
|
||||
$(CP) $(PKG_INSTALL_DIR)/* $(1)/
|
||||
endef
|
||||
|
||||
define Package/$(PKG_NAME)/config
|
||||
source "$(SOURCE)/Config.in"
|
||||
endef
|
||||
|
||||
$(eval $(call BuildPackage,$(PKG_NAME)))
|
||||
|
||||
@@ -1,16 +0,0 @@
|
||||
config PACKAGE_libamxj
|
||||
tristate
|
||||
select SAH_LIB_AMXJ
|
||||
|
||||
if PACKAGE_libamxj
|
||||
|
||||
menu "Select libamxj build options"
|
||||
depends on PACKAGE_libamxj
|
||||
|
||||
config SAH_LIB_AMXJ
|
||||
bool "Build libamxj"
|
||||
default y
|
||||
|
||||
endmenu
|
||||
|
||||
endif
|
||||
@@ -1,25 +1,18 @@
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=libamxj
|
||||
PKG_VERSION:=v0.3.12
|
||||
PKG_VERSION:=v0.3.16
|
||||
SHORT_DESCRIPTION:=JSON parser & generator using yajl and libamxc variants
|
||||
|
||||
PKG_SOURCE_PROTO:=git
|
||||
PKG_SOURCE_VERSION:=v0.3.12
|
||||
PKG_SOURCE_URL:=https://gitlab.com/soft.at.home/ambiorix/libraries/libamxj.git
|
||||
PKG_MIRROR_HASH:=7351e21cce7beabd9b481834bfb7cce281c550474d76137ecde4a4978764a76e
|
||||
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
||||
PKG_SOURCE:=libamxj-v0.3.16.tar.gz
|
||||
PKG_SOURCE_URL:=https://gitlab.com/soft.at.home/ambiorix/libraries/libamxj/-/archive/v0.3.16
|
||||
PKG_HASH:=70e49b4754f92304148a270468d8c8eaf02e2ca30973d81acd8e6bc74252f0b9
|
||||
PKG_BUILD_DIR:=$(BUILD_DIR)/libamxj-v0.3.16
|
||||
PKG_MAINTAINER:=Soft At Home <support.opensource@softathome.com>
|
||||
PKG_LICENSE:=BSD-2-Clause-Patent
|
||||
PKG_LICENSE_FILES:=LICENSE
|
||||
|
||||
COMPONENT:=libamxj
|
||||
|
||||
PKG_RELEASE?=1
|
||||
PKG_INSTALL:=1
|
||||
|
||||
PKG_BUILD_DEPENDS += libamxc
|
||||
PKG_BUILD_DEPENDS += yajl
|
||||
PKG_RELEASE:=1
|
||||
|
||||
include $(INCLUDE_DIR)/package.mk
|
||||
|
||||
@@ -34,7 +27,7 @@ define Package/$(PKG_NAME)
|
||||
endef
|
||||
|
||||
define Package/$(PKG_NAME)/description
|
||||
"JSON parser & generator using yajl and libamxc variants"
|
||||
JSON parser & generator using yajl and libamxc variants
|
||||
endef
|
||||
|
||||
define Build/Compile
|
||||
@@ -46,7 +39,6 @@ define Build/Install
|
||||
find $(PKG_INSTALL_DIR) -name *.a -exec rm {} +;
|
||||
find $(PKG_INSTALL_DIR) -name *.h -exec rm {} +;
|
||||
find $(PKG_INSTALL_DIR) -name *.pc -exec rm {} +;
|
||||
|
||||
endef
|
||||
|
||||
define Build/InstallDev
|
||||
@@ -57,8 +49,4 @@ define Package/$(PKG_NAME)/install
|
||||
$(CP) $(PKG_INSTALL_DIR)/* $(1)/
|
||||
endef
|
||||
|
||||
define Package/$(PKG_NAME)/config
|
||||
source "$(SOURCE)/Config.in"
|
||||
endef
|
||||
|
||||
$(eval $(call BuildPackage,$(PKG_NAME)))
|
||||
|
||||
@@ -1,16 +0,0 @@
|
||||
config PACKAGE_libamxm
|
||||
tristate
|
||||
select SAH_LIB_AMXP
|
||||
|
||||
if PACKAGE_libamxm
|
||||
|
||||
menu "Select libamxm build options"
|
||||
depends on PACKAGE_libamxm
|
||||
|
||||
config SAH_LIB_AMXP
|
||||
bool "Build libamxm"
|
||||
default y
|
||||
|
||||
endmenu
|
||||
|
||||
endif
|
||||
@@ -1,25 +1,18 @@
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=libamxm
|
||||
PKG_VERSION:=v0.0.18
|
||||
PKG_VERSION:=v0.0.20
|
||||
SHORT_DESCRIPTION:=modularity api, simplifies creation of add-ons (plug-ins, modules)
|
||||
|
||||
PKG_SOURCE_PROTO:=git
|
||||
PKG_SOURCE_VERSION:=v0.0.18
|
||||
PKG_SOURCE_URL:=https://gitlab.com/soft.at.home/ambiorix/libraries/libamxm.git
|
||||
PKG_MIRROR_HASH:=7a2bb575353c5f86c149772645a52a84dfeaf8bebc5cda1fcf75dc503c9b4e0b
|
||||
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
||||
PKG_SOURCE:=libamxm-v0.0.20.tar.gz
|
||||
PKG_SOURCE_URL:=https://gitlab.com/soft.at.home/ambiorix/libraries/libamxm/-/archive/v0.0.20
|
||||
PKG_HASH:=9f2ebad0dc1e76019f2c46a15d9054f439cbc0e5ecd67d263d0be648949ee5ed
|
||||
PKG_BUILD_DIR:=$(BUILD_DIR)/libamxm-v0.0.20
|
||||
PKG_MAINTAINER:=Soft At Home <support.opensource@softathome.com>
|
||||
PKG_LICENSE:=BSD-2-Clause-Patent
|
||||
PKG_LICENSE_FILES:=LICENSE
|
||||
|
||||
COMPONENT:=libamxm
|
||||
|
||||
PKG_RELEASE?=1
|
||||
PKG_INSTALL:=1
|
||||
|
||||
PKG_BUILD_DEPENDS += libamxc
|
||||
PKG_BUILD_DEPENDS += libamxp
|
||||
PKG_RELEASE:=1
|
||||
|
||||
include $(INCLUDE_DIR)/package.mk
|
||||
|
||||
@@ -34,7 +27,7 @@ define Package/$(PKG_NAME)
|
||||
endef
|
||||
|
||||
define Package/$(PKG_NAME)/description
|
||||
"modularity api, simplifies creation of add-ons (plug-ins, modules)"
|
||||
modularity api, simplifies creation of add-ons (plug-ins, modules)
|
||||
endef
|
||||
|
||||
define Build/Compile
|
||||
@@ -46,7 +39,6 @@ define Build/Install
|
||||
find $(PKG_INSTALL_DIR) -name *.a -exec rm {} +;
|
||||
find $(PKG_INSTALL_DIR) -name *.h -exec rm {} +;
|
||||
find $(PKG_INSTALL_DIR) -name *.pc -exec rm {} +;
|
||||
|
||||
endef
|
||||
|
||||
define Build/InstallDev
|
||||
@@ -57,8 +49,4 @@ define Package/$(PKG_NAME)/install
|
||||
$(CP) $(PKG_INSTALL_DIR)/* $(1)/
|
||||
endef
|
||||
|
||||
define Package/$(PKG_NAME)/config
|
||||
source "$(SOURCE)/Config.in"
|
||||
endef
|
||||
|
||||
$(eval $(call BuildPackage,$(PKG_NAME)))
|
||||
|
||||
@@ -1,16 +0,0 @@
|
||||
config PACKAGE_libamxo
|
||||
tristate
|
||||
select SAH_LIB_AMXO
|
||||
|
||||
if PACKAGE_libamxo
|
||||
|
||||
menu "Select libamxo build options"
|
||||
depends on PACKAGE_libamxo
|
||||
|
||||
config SAH_LIB_AMXO
|
||||
bool "Build libamxo"
|
||||
default y
|
||||
|
||||
endmenu
|
||||
|
||||
endif
|
||||
@@ -1,26 +1,18 @@
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=libamxo
|
||||
PKG_VERSION:=v1.0.2
|
||||
PKG_VERSION:=v1.1.4
|
||||
SHORT_DESCRIPTION:=Ambiorix Object Definition Language library
|
||||
|
||||
PKG_SOURCE_PROTO:=git
|
||||
PKG_SOURCE_VERSION:=v1.0.2
|
||||
PKG_SOURCE_URL:=https://gitlab.com/soft.at.home/ambiorix/libraries/libamxo.git
|
||||
PKG_MIRROR_HASH:=5f4102ef0075c73d7c2bf54f14c28759c12679f3983680ee264d043ad8f7ce6f
|
||||
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
||||
PKG_SOURCE:=libamxo-v1.1.4.tar.gz
|
||||
PKG_SOURCE_URL:=https://gitlab.com/soft.at.home/ambiorix/libraries/libamxo/-/archive/v1.1.4
|
||||
PKG_HASH:=200ba679585bb814642a50b30e4adef77e634fe6c47c785c59248f22490e7b56
|
||||
PKG_BUILD_DIR:=$(BUILD_DIR)/libamxo-v1.1.4
|
||||
PKG_MAINTAINER:=Soft At Home <support.opensource@softathome.com>
|
||||
PKG_LICENSE:=BSD-2-Clause-Patent
|
||||
PKG_LICENSE_FILES:=LICENSE
|
||||
|
||||
COMPONENT:=libamxo
|
||||
|
||||
PKG_RELEASE?=1
|
||||
PKG_INSTALL:=1
|
||||
|
||||
PKG_BUILD_DEPENDS += libamxc
|
||||
PKG_BUILD_DEPENDS += libamxp
|
||||
PKG_BUILD_DEPENDS += libamxd
|
||||
PKG_RELEASE:=1
|
||||
|
||||
include $(INCLUDE_DIR)/package.mk
|
||||
|
||||
@@ -36,7 +28,7 @@ define Package/$(PKG_NAME)
|
||||
endef
|
||||
|
||||
define Package/$(PKG_NAME)/description
|
||||
"Ambiorix Object Definition Language library"
|
||||
Ambiorix Object Definition Language library
|
||||
endef
|
||||
|
||||
define Build/Compile
|
||||
@@ -48,7 +40,6 @@ define Build/Install
|
||||
find $(PKG_INSTALL_DIR) -name *.a -exec rm {} +;
|
||||
find $(PKG_INSTALL_DIR) -name *.h -exec rm {} +;
|
||||
find $(PKG_INSTALL_DIR) -name *.pc -exec rm {} +;
|
||||
|
||||
endef
|
||||
|
||||
define Build/InstallDev
|
||||
@@ -59,8 +50,4 @@ define Package/$(PKG_NAME)/install
|
||||
$(CP) $(PKG_INSTALL_DIR)/* $(1)/
|
||||
endef
|
||||
|
||||
define Package/$(PKG_NAME)/config
|
||||
source "$(SOURCE)/Config.in"
|
||||
endef
|
||||
|
||||
$(eval $(call BuildPackage,$(PKG_NAME)))
|
||||
|
||||
@@ -1,16 +0,0 @@
|
||||
config PACKAGE_libamxp
|
||||
tristate
|
||||
select SAH_LIB_AMXP
|
||||
|
||||
if PACKAGE_libamxp
|
||||
|
||||
menu "Select libamxp build options"
|
||||
depends on PACKAGE_libamxp
|
||||
|
||||
config SAH_LIB_AMXP
|
||||
bool "Build libamxp"
|
||||
default y
|
||||
|
||||
endmenu
|
||||
|
||||
endif
|
||||
@@ -1,24 +1,18 @@
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=libamxp
|
||||
PKG_VERSION:=v0.6.10
|
||||
PKG_VERSION:=v0.7.2
|
||||
SHORT_DESCRIPTION:=Common patterns implementation
|
||||
|
||||
PKG_SOURCE_PROTO:=git
|
||||
PKG_SOURCE_VERSION:=v0.6.10
|
||||
PKG_SOURCE_URL:=https://gitlab.com/soft.at.home/ambiorix/libraries/libamxp.git
|
||||
PKG_MIRROR_HASH:=cfa4a3a397f3fadcf4dcde2358753589cadab34eeddc3f00b0f19d49c74abf28
|
||||
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
||||
PKG_SOURCE:=libamxp-v0.7.2.tar.gz
|
||||
PKG_SOURCE_URL:=https://gitlab.com/soft.at.home/ambiorix/libraries/libamxp/-/archive/v0.7.2
|
||||
PKG_HASH:=1a81f40815be2b7d7017b5190fe034ca7c6be6658f9d2d36c887bf4eb923312e
|
||||
PKG_BUILD_DIR:=$(BUILD_DIR)/libamxp-v0.7.2
|
||||
PKG_MAINTAINER:=Soft At Home <support.opensource@softathome.com>
|
||||
PKG_LICENSE:=BSD-2-Clause-Patent
|
||||
PKG_LICENSE_FILES:=LICENSE
|
||||
|
||||
COMPONENT:=libamxp
|
||||
|
||||
PKG_RELEASE?=1
|
||||
PKG_INSTALL:=1
|
||||
|
||||
PKG_BUILD_DEPENDS += libamxc
|
||||
PKG_RELEASE:=1
|
||||
|
||||
include $(INCLUDE_DIR)/package.mk
|
||||
|
||||
@@ -32,7 +26,7 @@ define Package/$(PKG_NAME)
|
||||
endef
|
||||
|
||||
define Package/$(PKG_NAME)/description
|
||||
"Common patterns implementation"
|
||||
Common patterns implementation
|
||||
endef
|
||||
|
||||
define Build/Compile
|
||||
@@ -44,7 +38,6 @@ define Build/Install
|
||||
find $(PKG_INSTALL_DIR) -name *.a -exec rm {} +;
|
||||
find $(PKG_INSTALL_DIR) -name *.h -exec rm {} +;
|
||||
find $(PKG_INSTALL_DIR) -name *.pc -exec rm {} +;
|
||||
|
||||
endef
|
||||
|
||||
define Build/InstallDev
|
||||
@@ -55,8 +48,4 @@ define Package/$(PKG_NAME)/install
|
||||
$(CP) $(PKG_INSTALL_DIR)/* $(1)/
|
||||
endef
|
||||
|
||||
define Package/$(PKG_NAME)/config
|
||||
source "$(SOURCE)/Config.in"
|
||||
endef
|
||||
|
||||
$(eval $(call BuildPackage,$(PKG_NAME)))
|
||||
|
||||
@@ -1,16 +0,0 @@
|
||||
config PACKAGE_libamxt
|
||||
tristate
|
||||
select SAH_LIB_AMXP
|
||||
|
||||
if PACKAGE_libamxt
|
||||
|
||||
menu "Select libamxt build options"
|
||||
depends on PACKAGE_libamxt
|
||||
|
||||
config SAH_LIB_AMXP
|
||||
bool "Build libamxt"
|
||||
default y
|
||||
|
||||
endmenu
|
||||
|
||||
endif
|
||||
@@ -1,25 +1,18 @@
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=libamxt
|
||||
PKG_VERSION:=v0.1.12
|
||||
PKG_VERSION:=v0.1.18
|
||||
SHORT_DESCRIPTION:=Common patterns implementation
|
||||
|
||||
PKG_SOURCE_PROTO:=git
|
||||
PKG_SOURCE_VERSION:=v0.1.12
|
||||
PKG_SOURCE_URL:=https://gitlab.com/soft.at.home/ambiorix/libraries/libamxt.git
|
||||
PKG_MIRROR_HASH:=3497d0707ab8f0de906a0a2e3a93f9328768922181451703cbe257d61c7ac255
|
||||
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
||||
PKG_SOURCE:=libamxt-v0.1.18.tar.gz
|
||||
PKG_SOURCE_URL:=https://gitlab.com/soft.at.home/ambiorix/libraries/libamxt/-/archive/v0.1.18
|
||||
PKG_HASH:=30220655133ca734a771c0b0b0b0b697c9f8b432dab6075ce73e88eba467d577
|
||||
PKG_BUILD_DIR:=$(BUILD_DIR)/libamxt-v0.1.18
|
||||
PKG_MAINTAINER:=Soft At Home <support.opensource@softathome.com>
|
||||
PKG_LICENSE:=BSD-2-Clause-Patent
|
||||
PKG_LICENSE_FILES:=LICENSE
|
||||
|
||||
COMPONENT:=libamxt
|
||||
|
||||
PKG_RELEASE?=1
|
||||
PKG_INSTALL:=1
|
||||
|
||||
PKG_BUILD_DEPENDS += libamxc
|
||||
PKG_BUILD_DEPENDS += libamxp
|
||||
PKG_RELEASE:=1
|
||||
|
||||
include $(INCLUDE_DIR)/package.mk
|
||||
|
||||
@@ -34,7 +27,7 @@ define Package/$(PKG_NAME)
|
||||
endef
|
||||
|
||||
define Package/$(PKG_NAME)/description
|
||||
"Common patterns implementation"
|
||||
Common patterns implementation
|
||||
endef
|
||||
|
||||
define Build/Compile
|
||||
@@ -46,7 +39,6 @@ define Build/Install
|
||||
find $(PKG_INSTALL_DIR) -name *.a -exec rm {} +;
|
||||
find $(PKG_INSTALL_DIR) -name *.h -exec rm {} +;
|
||||
find $(PKG_INSTALL_DIR) -name *.pc -exec rm {} +;
|
||||
|
||||
endef
|
||||
|
||||
define Build/InstallDev
|
||||
@@ -57,8 +49,4 @@ define Package/$(PKG_NAME)/install
|
||||
$(CP) $(PKG_INSTALL_DIR)/* $(1)/
|
||||
endef
|
||||
|
||||
define Package/$(PKG_NAME)/config
|
||||
source "$(SOURCE)/Config.in"
|
||||
endef
|
||||
|
||||
$(eval $(call BuildPackage,$(PKG_NAME)))
|
||||
|
||||
50
libs/libsahtrace/Makefile
Normal file
50
libs/libsahtrace/Makefile
Normal file
@@ -0,0 +1,50 @@
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=libsahtrace
|
||||
PKG_VERSION:=v1.0.0
|
||||
SHORT_DESCRIPTION:=Small and flexible library to enable tracing and logging
|
||||
|
||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
||||
PKG_SOURCE_URL:=https://gitlab.com/soft.at.home/logging/libsahtrace/-/archive/$(PKG_VERSION)
|
||||
PKG_HASH:=6ee4a8b8e7ee39f94b731e9ca0aa0b342cf6565916033f39fb4ae99d3b758ab2
|
||||
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
||||
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:=ambiorix
|
||||
SUBMENU:=Libraries
|
||||
TITLE:=$(SHORT_DESCRIPTION)
|
||||
URL:=https://gitlab.com/soft.at.home/logging/libsahtrace
|
||||
MENU:=1
|
||||
endef
|
||||
|
||||
define Package/$(PKG_NAME)/description
|
||||
Small and flexible library to enable tracing and logging
|
||||
endef
|
||||
|
||||
define Build/Compile
|
||||
$(call Build/Compile/Default, STAGINGDIR=$(STAGING_DIR) CONFIGDIR=$(STAGING_DIR) PKG_CONFIG_PATH=$(STAGING_DIR)/usr/lib/pkgconfig RAW_VERSION=$(PKG_VERSION) HARDCO_HAL_DIR=$(STAGING_DIR)/usr/include)
|
||||
endef
|
||||
|
||||
define Build/Install
|
||||
$(call Build/Install/Default, install INSTALL=install D=$(PKG_INSTALL_DIR) DEST=$(PKG_INSTALL_DIR) CONFIGDIR=$(STAGING_DIR) PV=$(PKG_VERSION) PKG_CONFIG_LIBDIR=$(STAGING_DIR)/usr/lib/pkgconfig LIBDIR=/usr/lib INSTALL_LIB_DIR=/lib INSTALL_BIN_DIR=/bin RAW_VERSION=$(PKG_VERSION) HARDCO_HAL_DIR=$(STAGING_DIR)/usr/include)
|
||||
find $(PKG_INSTALL_DIR) -name *.a -exec rm {} +;
|
||||
find $(PKG_INSTALL_DIR) -name *.h -exec rm {} +;
|
||||
find $(PKG_INSTALL_DIR) -name *.pc -exec rm {} +;
|
||||
endef
|
||||
|
||||
define Build/InstallDev
|
||||
$(call Build/Install/Default, install INSTALL=install D=$(STAGING_DIR) DEST=$(STAGING_DIR) CONFIGDIR=$(STAGING_DIR) PV=$(PKG_VERSION) PKG_CONFIG_LIBDIR=$(STAGING_DIR)/usr/lib/pkgconfig LIBDIR=/usr/lib INSTALL_LIB_DIR=/lib INSTALL_BIN_DIR=/bin RAW_VERSION=$(PKG_VERSION) HARDCO_HAL_DIR=$(STAGING_DIR)/usr/include)
|
||||
endef
|
||||
|
||||
define Package/$(PKG_NAME)/install
|
||||
$(CP) $(PKG_INSTALL_DIR)/* $(1)/
|
||||
endef
|
||||
|
||||
$(eval $(call BuildPackage,$(PKG_NAME)))
|
||||
@@ -23,11 +23,18 @@ define Package/$(PKG_NAME)
|
||||
endef
|
||||
|
||||
define Package/$(PKG_NAME)/description
|
||||
"uriparser is a strictly RFC 3986 compliant URI parsing and handling library written in C89 ("ANSI C"). uriparser is cross-platform, fast, supports Unicode, and is licensed under the New BSD license."
|
||||
Uriparser is a strictly RFC 3986 compliant URI parsing and handling library written in C89 ("ANSI C"). Uriparser is cross-platform, fast, supports Unicode, and is licensed under the New BSD license.
|
||||
endef
|
||||
|
||||
CMAKE_OPTIONS += -DURIPARSER_BUILD_DOCS:BOOL=OFF -DURIPARSER_BUILD_TESTS:BOOL=OFF
|
||||
|
||||
define Build/Install
|
||||
$(call Build/Install/Default)
|
||||
find $(PKG_INSTALL_DIR) -name *.cmake -exec rm {} +;
|
||||
find $(PKG_INSTALL_DIR) -name *.h -exec rm {} +;
|
||||
find $(PKG_INSTALL_DIR) -name *.pc -exec rm {} +;
|
||||
endef
|
||||
|
||||
define Build/InstallDev
|
||||
$(INSTALL_DIR) $(STAGING_DIR)/usr/include/uriparser
|
||||
$(CP) $(PKG_BUILD_DIR)/include/uriparser $(STAGING_DIR)/usr/include/
|
||||
|
||||
@@ -1,16 +0,0 @@
|
||||
config PACKAGE_mod-amxb-ubus
|
||||
tristate
|
||||
select SAH_LIB_AMXB_UBUS
|
||||
|
||||
if PACKAGE_mod-amxb-ubus
|
||||
|
||||
menu "Select mod-amxb-ubus build options"
|
||||
depends on PACKAGE_mod-amxb-ubus
|
||||
|
||||
config SAH_LIB_AMXB_UBUS
|
||||
bool "Build ubus backend for ambiorix"
|
||||
default y
|
||||
|
||||
endmenu
|
||||
|
||||
endif
|
||||
@@ -1,27 +1,18 @@
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=mod-amxb-ubus
|
||||
PKG_VERSION:=v2.0.3
|
||||
PKG_VERSION:=v2.0.10
|
||||
SHORT_DESCRIPTION:=Ubus Backend
|
||||
|
||||
PKG_SOURCE_PROTO:=git
|
||||
PKG_SOURCE_VERSION:=v2.0.3
|
||||
PKG_SOURCE_URL:=https://gitlab.com/soft.at.home/ambiorix/modules/amxb_backends/amxb_ubus.git
|
||||
PKG_MIRROR_HASH:=8102d741ea0f9684b0770b9be8e5590d3604070be88bd9e40ce92fcd1ef261a1
|
||||
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
||||
PKG_SOURCE:=amxb_ubus-v2.0.10.tar.gz
|
||||
PKG_SOURCE_URL:=https://gitlab.com/soft.at.home/ambiorix/modules/amxb_backends/amxb_ubus/-/archive/v2.0.10
|
||||
PKG_HASH:=c0b3914d381b4d1c02d9e7c6e50eccf6445d354d3936d4594bde8eb0d65ef8df
|
||||
PKG_BUILD_DIR:=$(BUILD_DIR)/amxb_ubus-v2.0.10
|
||||
PKG_MAINTAINER:=Soft At Home <support.opensource@softathome.com>
|
||||
PKG_LICENSE:=BSD-2-Clause-Patent
|
||||
PKG_LICENSE_FILES:=LICENSE
|
||||
|
||||
COMPONENT:=mod-amxb-ubus
|
||||
|
||||
PKG_RELEASE?=1
|
||||
PKG_INSTALL:=1
|
||||
|
||||
PKG_BUILD_DEPENDS += libamxc
|
||||
PKG_BUILD_DEPENDS += libamxb
|
||||
PKG_BUILD_DEPENDS += libamxd
|
||||
PKG_BUILD_DEPENDS += ubus
|
||||
PKG_RELEASE:=1
|
||||
|
||||
include $(INCLUDE_DIR)/package.mk
|
||||
|
||||
@@ -38,7 +29,7 @@ define Package/$(PKG_NAME)
|
||||
endef
|
||||
|
||||
define Package/$(PKG_NAME)/description
|
||||
"Ubus Backend"
|
||||
Ubus Backend
|
||||
endef
|
||||
|
||||
define Build/Compile
|
||||
@@ -50,7 +41,6 @@ define Build/Install
|
||||
find $(PKG_INSTALL_DIR) -name *.a -exec rm {} +;
|
||||
find $(PKG_INSTALL_DIR) -name *.h -exec rm {} +;
|
||||
find $(PKG_INSTALL_DIR) -name *.pc -exec rm {} +;
|
||||
|
||||
endef
|
||||
|
||||
define Build/InstallDev
|
||||
@@ -61,8 +51,4 @@ define Package/$(PKG_NAME)/install
|
||||
$(CP) $(PKG_INSTALL_DIR)/* $(1)/
|
||||
endef
|
||||
|
||||
define Package/$(PKG_NAME)/config
|
||||
source "$(SOURCE)/Config.in"
|
||||
endef
|
||||
|
||||
$(eval $(call BuildPackage,$(PKG_NAME)))
|
||||
|
||||
54
mods/mod-sahtrace/Makefile
Normal file
54
mods/mod-sahtrace/Makefile
Normal file
@@ -0,0 +1,54 @@
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=mod-sahtrace
|
||||
PKG_VERSION:=v0.0.7
|
||||
SHORT_DESCRIPTION:=Module for sahtrace logging
|
||||
|
||||
PKG_SOURCE:=mod-sahtrace-v0.0.7.tar.gz
|
||||
PKG_SOURCE_URL:=https://gitlab.com/soft.at.home/ambiorix/modules/mod-sahtrace/-/archive/v0.0.7
|
||||
PKG_HASH:=1242089b7fa343f73c3c4a9354869e53c197fcf620300383c8c36360bc3c8acf
|
||||
PKG_BUILD_DIR:=$(BUILD_DIR)/mod-sahtrace-v0.0.7
|
||||
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:=ambiorix
|
||||
SUBMENU:=Modules
|
||||
TITLE:=$(SHORT_DESCRIPTION)
|
||||
URL:=https://gitlab.com/soft.at.home/ambiorix/modules/mod-sahtrace
|
||||
DEPENDS += +libamxc
|
||||
DEPENDS += +libamxd
|
||||
DEPENDS += +libamxo
|
||||
DEPENDS += +libsahtrace
|
||||
MENU:=1
|
||||
endef
|
||||
|
||||
define Package/$(PKG_NAME)/description
|
||||
Module for sahtrace logging
|
||||
endef
|
||||
|
||||
define Build/Compile
|
||||
$(call Build/Compile/Default, STAGINGDIR=$(STAGING_DIR) CONFIGDIR=$(STAGING_DIR) PKG_CONFIG_PATH=$(STAGING_DIR)/usr/lib/pkgconfig RAW_VERSION=$(PKG_VERSION) HARDCO_HAL_DIR=$(STAGING_DIR)/usr/include)
|
||||
endef
|
||||
|
||||
define Build/Install
|
||||
$(call Build/Install/Default, install INSTALL=install D=$(PKG_INSTALL_DIR) DEST=$(PKG_INSTALL_DIR) CONFIGDIR=$(STAGING_DIR) PV=$(PKG_VERSION) PKG_CONFIG_LIBDIR=$(STAGING_DIR)/usr/lib/pkgconfig LIBDIR=/usr/lib INSTALL_LIB_DIR=/lib INSTALL_BIN_DIR=/bin RAW_VERSION=$(PKG_VERSION) HARDCO_HAL_DIR=$(STAGING_DIR)/usr/include)
|
||||
find $(PKG_INSTALL_DIR) -name *.a -exec rm {} +;
|
||||
find $(PKG_INSTALL_DIR) -name *.h -exec rm {} +;
|
||||
find $(PKG_INSTALL_DIR) -name *.pc -exec rm {} +;
|
||||
endef
|
||||
|
||||
define Build/InstallDev
|
||||
$(call Build/Install/Default, install INSTALL=install D=$(STAGING_DIR) DEST=$(STAGING_DIR) CONFIGDIR=$(STAGING_DIR) PV=$(PKG_VERSION) PKG_CONFIG_LIBDIR=$(STAGING_DIR)/usr/lib/pkgconfig LIBDIR=/usr/lib INSTALL_LIB_DIR=/lib INSTALL_BIN_DIR=/bin RAW_VERSION=$(PKG_VERSION) HARDCO_HAL_DIR=$(STAGING_DIR)/usr/include)
|
||||
endef
|
||||
|
||||
define Package/$(PKG_NAME)/install
|
||||
$(CP) $(PKG_INSTALL_DIR)/* $(1)/
|
||||
endef
|
||||
|
||||
$(eval $(call BuildPackage,$(PKG_NAME)))
|
||||
Reference in New Issue
Block a user