mirror of
git://projects.qi-hardware.com/openwrt-packages.git
synced 2024-11-22 13:36:15 +02:00
50 lines
1.3 KiB
Makefile
50 lines
1.3 KiB
Makefile
#
|
|
# Copyright (C) 2012 Xiangfu Liu <xiangfu@sharism.cc>
|
|
# bitcoin: 1BQvUsuQBYUyVuX4jjFk4dVBpWJVQEUHTZ
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=cgminer
|
|
PKG_VERSION:=20120226
|
|
PKG_REV:=daf1eff13c5583770ed4a8e7a399924b1e208845
|
|
PKG_RELEASE:=1
|
|
PKG_INSTALL:=1
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_REV).tar.gz
|
|
PKG_SOURCE_URL:=git://github.com/ckolivas/cgminer.git
|
|
PKG_SOURCE_PROTO:=git
|
|
PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
|
|
PKG_SOURCE_VERSION:=$(PKG_REV)
|
|
|
|
PKG_FIXUP:=autoreconf
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/cgminer
|
|
MAINTAINER:="Xiangfu Liu" \
|
|
<xiangfu@sharism.cc> <1BQvUsuQBYUyVuX4jjFk4dVBpWJVQEUHTZ>
|
|
SECTION:=utils
|
|
CATEGORY:=Utilities
|
|
TITLE:=cgminer
|
|
URL:=https://github.com/ckolivas/cgminer
|
|
DEPENDS:=+libcurl +libpthread +libncurses +jansson
|
|
endef
|
|
|
|
define Package/cgminer/description
|
|
endef
|
|
|
|
CONFIGURE_ARGS += --disable-opencl --disable-adl --enable-icarus --enable-bitforce
|
|
TARGET_CFLAGS +=
|
|
TARGET_LDFLAGS += -Wl,-rpath-link=$(STAGING_DIR)/usr/lib
|
|
|
|
define Package/cgminer/install
|
|
$(INSTALL_DIR) $(1)/usr/bin/
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/cgminer $(1)/usr/bin/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,cgminer))
|