1
0
mirror of https://github.com/freifunk-gluon/packages.git synced 2024-06-17 12:44:00 +02:00

utils/alfred-json: add alfred-json

This is just the alfred-json package for OpenWRT. It's not used in gluon
yet but will likely be once I've finished the statuspage.
This commit is contained in:
Nils Schneider 2014-01-31 02:00:57 +01:00
parent c1b8168548
commit dd466a22c9

View File

@ -0,0 +1,36 @@
#
# Copyright (C) 2012 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
include $(TOPDIR)/rules.mk
PKG_NAME:=alfred-json
PKG_VERSION:=0.2
PKG_RELEASE:=2
PKG_REV:=v$(PKG_VERSION)
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=git://github.com/tcatm/$(PKG_NAME).git
PKG_SOURCE_VERSION:=$(PKG_REV)
PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
PKG_SOURCE_PROTO:=git
include $(INCLUDE_DIR)/package.mk
define Package/alfred-json
SECTION:=utils
CATEGORY:=Utilities
DEPENDS:=+jansson +libc +librt +zlib
TITLE:=ALFRED JSON client
URL:=https://github.com/tcatm/alfred-json
endef
define Package/alfred-json/install
$(INSTALL_DIR) $(1)/usr/bin
cp -fpR $(PKG_BUILD_DIR)/alfred-json $(1)/usr/bin/
endef
$(eval $(call BuildPackage,alfred-json))