treewide: remove AUTORELEASE
[feed/packages.git] / utils / nnn / Makefile
1 include $(TOPDIR)/rules.mk
2
3 PKG_NAME:=nnn
4 PKG_VERSION:=4.4
5 PKG_RELEASE:=1
6
7 PKG_SOURCE:=$(PKG_NAME)-v$(PKG_VERSION).tar.gz
8 PKG_SOURCE_URL:=https://codeload.github.com/jarun/nnn/tar.gz/v$(PKG_VERSION)?
9 PKG_HASH:=e04a3f0f0c2af1e18cb6f005d18267c7703644274d21bb93f03b30e4fd3d1653
10
11 PKG_MAINTAINER:=Josef Schlehofer <pepe.schlehofer@gmail.com>
12 PKG_LICENSE:=BSD-2-Clause
13 PKG_LICENSE_FILES:=LICENSE
14
15 PKG_BUILD_PARALLEL:=1
16
17 include $(INCLUDE_DIR)/package.mk
18
19 define Package/nnn
20 SECTION:=utils
21 CATEGORY:=Utilities
22 TITLE:=Full-featured terminal file manager
23 URL:=https://github.com/jarun/nnn
24 DEPENDS:=+libncurses +libreadline +musl-fts
25 endef
26
27 define Package/nnn/description
28 nnn is full-featured tiny terminal file manager and
29 disk usage analyzer, fuzzy app launcher, batch file renamer
30 and file picker.
31 endef
32
33 define Package/nnn/install
34 $(INSTALL_DIR) $(1)/usr/bin
35 $(INSTALL_BIN) $(PKG_BUILD_DIR)/nnn $(1)/usr/bin
36 endef
37
38 $(eval $(call BuildPackage,nnn))