OpenWrt packages
Sign in or create your account | Project List | Help
OpenWrt packages Git Source Tree
Root/
| 1 | # |
| 2 | # This is free software, licensed under the GNU General Public License v2. |
| 3 | # See /LICENSE for more information. |
| 4 | # |
| 5 | |
| 6 | include $(TOPDIR)/rules.mk |
| 7 | |
| 8 | PKG_NAME:=smalltalk |
| 9 | PKG_VERSION:=3.2.3 |
| 10 | PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz |
| 11 | PKG_SOURCE_URL:=ftp://ftp.gnu.org/gnu/smalltalk/ |
| 12 | PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION) |
| 13 | PKG_RELEASE:=1 |
| 14 | PKG_INSTALL:=1 |
| 15 | |
| 16 | include $(INCLUDE_DIR)/package.mk |
| 17 | |
| 18 | define Package/smalltalk |
| 19 | TITLE:=smalltalk |
| 20 | SECTION:=lang |
| 21 | CATEGORY:=Languages |
| 22 | DEPENDS:=@BROKEN |
| 23 | URL:=http://smalltalk.gnu.org/ |
| 24 | endef |
| 25 | |
| 26 | define Package/smalltalk/description |
| 27 | GNU Smalltalk is a free implementation of the Smalltalk-80 language |
| 28 | endef |
| 29 | |
| 30 | define Build/Compile |
| 31 | $(call Build/Compile/Default) |
| 32 | endef |
| 33 | |
| 34 | define Package/smalltalk/install |
| 35 | $(INSTALL_DIR) $(1)/usr/bin |
| 36 | endef |
| 37 | |
| 38 | $(eval $(call BuildPackage,smalltalk)) |
| 39 | # The following comments configure the Emacs editor. Just ignore them. |
| 40 | # Local Variables: |
| 41 | # compile-command: "make -C ~/openwrt-xburst.full_system package/smalltalk/{clean,compile} -j2 V=99" |
| 42 | # End: |
| 43 |
