X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/9be0258484c02865228dba228f8f05110a30f215..7e450a1c869a5b227e3c91c4e71049059f1193e6:/package/keynote/Makefile diff --git a/package/keynote/Makefile b/package/keynote/Makefile index c756747d7..9d97a96ca 100644 --- a/package/keynote/Makefile +++ b/package/keynote/Makefile @@ -12,12 +12,13 @@ PKG_NAME:=keynote PKG_VERSION:=2.3 PKG_RELEASE:=1 -PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION) PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2 PKG_SOURCE_URL:=http://downloads.openwrt.org/sources/ PKG_MD5SUM:=b569066ac2ba1356c2112b118a7d74d0 PKG_CAT:=bzcat +PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION) + include $(INCLUDE_DIR)/package.mk include $(INCLUDE_DIR)/kernel.mk @@ -34,16 +35,13 @@ define Package/keynote URL:=http://www1.cs.columbia.edu/~angelos/keynote.html endef -define Build/Configure - $(call Build/Configure/Default, \ - --enable-static \ - --enable-shared \ - ) -endef +CONFIGURE_ARGS += \ + --enable-static \ + --enable-shared define Build/Compile $(call Build/Compile/Default, \ - CFLAGS="\$$$$(EXTRA_CFLAGS) \$$$$(EXTRA_LDFLAGS)" \ + LIBS="$(EXTRA_LDFLAGS) -L. -lkeynote -lm -lcrypto" \ ) endef @@ -55,13 +53,12 @@ define Build/InstallDev endef define Build/UninstallDev - rm -rf \ - $(STAGING_DIR)/usr/include/keynote \ + rm -rf $(STAGING_DIR)/usr/include/keynote \ $(STAGING_DIR)/usr/lib/libkeynote.a endef define Package/keynote/install - install -d -m0755 $(1)/usr/sbin + $(INSTALL_DIR) $(1)/usr/sbin $(CP) $(PKG_BUILD_DIR)/keynote $(1)/usr/sbin/ endef