2009-05-10 21:57:57 +00:00
|
|
|
#
|
2010-03-19 04:50:26 +00:00
|
|
|
# Copyright (C) 2009-2010 OpenWrt.org
|
2009-05-10 21:57:57 +00:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=hasciicam
|
2011-11-12 20:22:31 +00:00
|
|
|
PKG_VERSION:=1.1.2
|
2009-05-10 21:57:57 +00:00
|
|
|
PKG_RELEASE:=1
|
|
|
|
|
2011-11-12 20:22:31 +00:00
|
|
|
PKG_SOURCE:=$(PKG_NAME)_$(PKG_VERSION).tar.gz
|
|
|
|
PKG_SOURCE_URL:=ftp://ftp.dyne.org/hasciicam/releases/
|
|
|
|
PKG_MD5SUM:=2c7393270e18ab913043683fa3390d8c
|
2009-05-10 21:57:57 +00:00
|
|
|
|
2010-02-18 13:10:21 +00:00
|
|
|
PKG_INSTALL:=1
|
|
|
|
|
2009-05-10 21:57:57 +00:00
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
|
|
|
define Package/hasciicam
|
|
|
|
SECTION:=multimedia
|
|
|
|
CATEGORY:=Multimedia
|
|
|
|
TITLE:=Live ASCII video feeds
|
|
|
|
URL:=http://ascii.dyne.org/
|
2011-11-12 20:22:31 +00:00
|
|
|
DEPENDS:= +libaa +ftplib
|
2009-05-10 21:57:57 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
|
|
|
|
CONFIGURE_VARS += \
|
|
|
|
LIBS="-lncurses" \
|
|
|
|
|
2010-02-18 13:10:21 +00:00
|
|
|
define Package/hasciicam/install
|
2009-05-10 21:57:57 +00:00
|
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/hasciicam $(1)/usr/bin/
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,hasciicam))
|