6d1d2eb756
Changelog can be found here: http://jonas.nitro.dk/tig/NEWS.html Signed-off-by: Francisco Borges <francisco.borges@gmail.com> git-svn-id: svn://svn.openwrt.org/openwrt/packages@35699 3c298f89-4303-0410-b956-a3cf2f4a3e73
45 lines
1020 B
Makefile
45 lines
1020 B
Makefile
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=tig
|
|
PKG_VERSION:=1.1
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE:=tig-$(PKG_VERSION).tar.gz
|
|
PKG_SOURCE_URL:=http://jonas.nitro.dk/tig/releases/
|
|
PKG_MD5SUM:=adeb797a8320962eeb345a615257cbac
|
|
PKG_CAT:=zcat
|
|
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/tig-$(PKG_VERSION)
|
|
PKG_BUILD_DEPENDS:=libncurses libiconv
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include $(INCLUDE_DIR)/nls.mk
|
|
|
|
define Package/tig
|
|
SECTION:=devel
|
|
CATEGORY:=Development
|
|
TITLE:=Console Git repository viewer
|
|
DEPENDS:=+git +libncursesw
|
|
URL:=http://jonas.nitro.dk/tig/releases/
|
|
endef
|
|
|
|
define Package/tig/description
|
|
Tig is a git repository browser that additionally can act as a pager for output
|
|
from various git commands.
|
|
endef
|
|
|
|
CONFIGURE_ARGS+= \
|
|
--with-libiconv="$(ICONV_PREFIX)"
|
|
|
|
define Package/tig/install
|
|
$(INSTALL_DIR) $(1)/usr/bin/
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/tig $(1)/usr/bin/tig
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,tig))
|