X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/1d3cff733d7f863871da68a81aeb52729dc314d4..92855cd186470c045637045ff88ebbb223f07fb3:/package/keynote/Makefile?ds=sidebyside diff --git a/package/keynote/Makefile b/package/keynote/Makefile index 30ff8899c..8bec6e772 100644 --- a/package/keynote/Makefile +++ b/package/keynote/Makefile @@ -7,7 +7,6 @@ # $Id$ include $(TOPDIR)/rules.mk -include $(INCLUDE_DIR)/kernel.mk PKG_NAME:=keynote PKG_VERSION:=2.3 @@ -16,7 +15,6 @@ PKG_RELEASE:=1 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2 PKG_SOURCE_URL:=http://downloads.openwrt.org/sources/ PKG_MD5SUM:=b569066ac2ba1356c2112b118a7d74d0 -PKG_CAT:=bzcat include $(INCLUDE_DIR)/package.mk @@ -37,15 +35,9 @@ CONFIGURE_ARGS += \ --enable-static \ --enable-shared -define Build/Compile - $(call Build/Compile/Default, \ - LIBS="$(EXTRA_LDFLAGS) -L. -lkeynote -lm -lcrypto" \ - ) -endef - define Build/InstallDev - mkdir -p $(STAGING_DIR)/usr/include - $(CP) $(PKG_BUILD_DIR)/{assertion,header,keynote,signature}.h $(STAGING_DIR)/usr/include/ + mkdir -p $(STAGING_DIR)/usr/include/keynote + $(CP) $(PKG_BUILD_DIR)/{assertion,header,keynote,signature}.h $(STAGING_DIR)/usr/include/keynote/ mkdir -p $(STAGING_DIR)/usr/lib $(CP) $(PKG_BUILD_DIR)/libkeynote.a $(STAGING_DIR)/usr/lib/ endef @@ -57,7 +49,7 @@ endef define Package/keynote/install $(INSTALL_DIR) $(1)/usr/sbin - $(CP) $(PKG_BUILD_DIR)/keynote $(1)/usr/sbin/ + $(INSTALL_BIN) $(PKG_BUILD_DIR)/keynote $(1)/usr/sbin/ endef $(eval $(call BuildPackage,keynote))