1
0
mirror of git://projects.qi-hardware.com/openwrt-packages.git synced 2024-06-29 01:05:27 +03:00

add bwbasic

This commit is contained in:
M. Dietrich 2010-03-01 15:36:50 +01:00
parent e41e4e2d69
commit 4bc1d32fa3

36
bwbasic/Makefile Normal file
View File

@ -0,0 +1,36 @@
# This is free software, licensed under the GNU General Public License
# v3. See /LICENSE for more information.
include $(TOPDIR)/rules.mk
PKG_NAME:=bwbasic
PKG_VERSION:=master
PKG_RELEASE:=1
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tgz
PKG_SOURCE_URL:=http://pyneo.org/t
PKG_MD5SUM:=8d42bb36260bfa276a1ca065bf464355
PKG_INSTALL:=1
include $(INCLUDE_DIR)/package.mk
define Package/bwbasic
SECTION:=utilites
CATEGORY:=Utilities
TITLE:=An bwbasic application
URL:=http://pyneo.org/t/bwbasic
DEPENDS:=+libncurses
endef
#DEPENDS:=+libreadline +libtermcap
define Package/bwbasic/description
A bwbasic application
endef
define Package/bwbasic/install
$(INSTALL_DIR) $(1)/usr/bin
$(INSTALL_BIN) \
$(PKG_INSTALL_DIR)/usr/bin/bwbasic \
$(1)/usr/bin/
endef
$(eval $(call BuildPackage,bwbasic))