mirror of
https://git.openwrt.org/feed/routing.git
synced 2025-01-07 03:06:53 +08:00
43449bcbbd
This is a very basic cleanup, several packages needs more work but this at least drops git for https and removes the use of PKG_MD5SUM and some minor fixes. Signed-off-by: Daniel Engberg <daniel.engberg.lists@pyret.net>
42 lines
1.1 KiB
Makefile
42 lines
1.1 KiB
Makefile
# Copyright (C) 2012-2014 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=babel-pinger
|
|
PKG_VERSION:=0.1
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
PKG_SOURCE_URL:=http://www.pps.univ-paris-diderot.fr/~jch/software/files/
|
|
PKG_HASH:=c411430bb102f08d3d68d2fb5010b5da0149908b671ac0fb12abd8c8ee6380c5
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/babel-pinger
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
SUBMENU:=Routing and Redirection
|
|
TITLE:=Babel-pinger
|
|
URL:=http://www.pps.univ-paris-diderot.fr/~jch/software/babel/
|
|
MAINTAINER:=Gabriel Kerneis <gabriel@kerneis.info>
|
|
DEPENDS:=+librt
|
|
endef
|
|
|
|
define Package/babel-pinger/description
|
|
Babel-pinger is a hack to export a default route into Babel for people
|
|
using DHCP to configure their routers rather than speaking to their
|
|
upstream provider with a proper routing protocol.
|
|
endef
|
|
|
|
MAKE_FLAGS+= \
|
|
CFLAGS="$(TARGET_CFLAGS)" \
|
|
|
|
define Package/babel-pinger/install
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/babel-pinger $(1)/usr/sbin/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,babel-pinger))
|