packages/utils/ink/Makefile
nico 35294da5e9 [packages] ink: indent with tabs (closes: #5115), remove unneeded variables
git-svn-id: svn://svn.openwrt.org/openwrt/packages@15823 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-05-13 12:58:48 +00:00

45 lines
954 B
Makefile

#
# Copyright (C) 2009 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
include $(TOPDIR)/rules.mk
PKG_NAME:=ink
PKG_VERSION:=0.5.0
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=@SF/ink
PKG_MD5SUM:=ddbbc4164384fc7185bc07b7602e4a8d
include $(INCLUDE_DIR)/package.mk
define Package/ink
SECTION:=utils
CATEGORY:=Utilities
TITLE:=A utility for reading ink levels
DEPENDS:=+libinklevel
URL:=http://ink.sourceforge.net/
endef
TARGET_CFLAGS += -linklevel
define Build/Compile
$(MAKE) -C $(PKG_BUILD_DIR) \
CC="$(TARGET_CC)" \
CFLAGS="$(TARGET_CFLAGS)" \
CPPFLAGS="$(TARGET_CPPFLAGS)" \
LDFLAGS="$(TARGET_LDFLAGS)" \
LIBS="$(TARGET_LIBS)" \
DESTDIR="$(PKG_INSTALL_DIR)" \
all install
endef
define Package/ink/install
$(INSTALL_DIR) $(1)/bin
$(CP) $(PKG_INSTALL_DIR)/usr/local/bin/ink $(1)/bin/
endef
$(eval $(call BuildPackage,ink))