OpenWrt packages
Sign in or create your account | Project List | Help
OpenWrt packages Commit Details
| Date: | 2010-08-17 03:55:46 (1 year 5 months ago) |
|---|---|
| Author: | Xiangfu Liu |
| Commit: | 7e2599183ab9c9779bc105bb5a2916eb180307bd |
| Message: | [guile] add development files Signed-off-by: Xiangfu Liu <xiangfu@sharism.cc> Acked-by: John Moore <jmoore@zedstar.org> |
| Files: |
guile/Makefile (3 diffs) |
Change Details
| guile/Makefile | ||
|---|---|---|
| 6 | 6 | # See /LICENSE for more information. |
| 7 | 7 | # |
| 8 | 8 | |
| 9 | # modified 02/05/2010 | |
| 9 | # modified 16/08/2010 | |
| 10 | 10 | # author: jmoore@zedstar.org |
| 11 | 11 | |
| 12 | 12 | include $(TOPDIR)/rules.mk |
| ... | ... | |
| 19 | 19 | |
| 20 | 20 | PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION) |
| 21 | 21 | |
| 22 | PKG_FIXUP:=libtool | |
| 22 | 23 | PKG_INSTALL:=1 |
| 23 | 24 | |
| 24 | 25 | include $(INCLUDE_DIR)/package.mk |
| ... | ... | |
| 40 | 41 | # should fix issue with threads |
| 41 | 42 | CONFIGURE_ARGS += --without-threads --without-gettext |
| 42 | 43 | |
| 44 | define Build/InstallDev | |
| 45 | $(INSTALL_DIR) \ | |
| 46 | $(1)/usr/include \ | |
| 47 | $(1)/usr/lib \ | |
| 48 | $(1)/usr/lib/pkgconfig | |
| 49 | $(CP) \ | |
| 50 | $(PKG_INSTALL_DIR)/usr/lib/* \ | |
| 51 | $(1)/usr/lib/ | |
| 52 | $(CP) \ | |
| 53 | $(PKG_INSTALL_DIR)/usr/include/* \ | |
| 54 | $(1)/usr/include/ | |
| 55 | $(CP) \ | |
| 56 | $(PKG_INSTALL_DIR)/usr/lib/pkgconfig \ | |
| 57 | $(1)/usr/lib/ | |
| 58 | endef | |
| 59 | ||
| 43 | 60 | define Build/Compile |
| 44 | 61 | (cd $(PKG_BUILD_DIR); autoreconf --force --install || exit 0); |
| 45 | 62 | endef |
