mirror of
https://github.com/archr-linux/Arch-R.git
synced 2026-03-31 14:41:55 -07:00
23 lines
806 B
Makefile
23 lines
806 B
Makefile
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
# Copyright (C) 2009-2016 Stephan Raue (stephan@openelec.tv)
|
|
|
|
PKG_NAME="nano"
|
|
PKG_VERSION="2.9.8"
|
|
PKG_SHA256="c2deac31ba4d3fd27a42fafcc47ccf499296cc69a422bbecab63f2933ea85488"
|
|
PKG_ARCH="any"
|
|
PKG_LICENSE="GPL"
|
|
PKG_SITE="http://www.nano-editor.org/"
|
|
PKG_URL="http://ftpmirror.gnu.org/nano/$PKG_NAME-$PKG_VERSION.tar.xz"
|
|
PKG_DEPENDS_TARGET="toolchain ncurses"
|
|
PKG_SECTION="shell/texteditor"
|
|
PKG_SHORTDESC="nano: Pico editor clone with enhancements"
|
|
PKG_LONGDESC="GNU nano (Nano's ANOther editor, or Not ANOther editor) is an enhanced clone of the Pico text editor."
|
|
|
|
PKG_CONFIGURE_OPTS_TARGET="--disable-utf8 \
|
|
--disable-nls \
|
|
--disable-libmagic"
|
|
|
|
post_makeinstall_target() {
|
|
rm -rf $INSTALL/usr/share/nano
|
|
}
|