2018-05-06 20:25:34 +02:00
|
|
|
VERSION="2.9.6"
|
2018-01-11 21:34:34 +01:00
|
|
|
SRCDIR="nano-${VERSION}"
|
|
|
|
TARBALL="${SRCDIR}.tar.xz"
|
|
|
|
URL="https://ftp.gnu.org/gnu/nano/"
|
2018-05-06 20:25:34 +02:00
|
|
|
SHA256SUM="a373507ebb4e9307a8202fbc19b5d29718025c8ec773669349211c362545d4c6"
|
2018-01-24 12:52:41 +01:00
|
|
|
DEPENDS="ncurses"
|
2018-01-11 21:34:34 +01:00
|
|
|
|
|
|
|
prepare() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
build() {
|
2018-02-16 23:22:04 +01:00
|
|
|
$1/configure --prefix="" --host="$TARGET" --enable-utf8
|
2018-01-11 21:34:34 +01:00
|
|
|
|
|
|
|
make -j $NUMJOBS
|
|
|
|
}
|
|
|
|
|
|
|
|
deploy() {
|
|
|
|
local SOURCE="$1"
|
2018-02-16 23:22:04 +01:00
|
|
|
local DEPLOY="$2"
|
2018-01-11 21:34:34 +01:00
|
|
|
|
|
|
|
make DESTDIR="$DEPLOY" install-strip
|
|
|
|
|
2018-02-17 14:47:42 +01:00
|
|
|
rm -r "$DEPLOY/share" "$DEPLOY/lib"
|
2018-01-11 21:34:34 +01:00
|
|
|
}
|
2018-05-06 17:23:31 +02:00
|
|
|
|
|
|
|
check_update() {
|
|
|
|
curl --silent -L "$URL" | grep -o ">nano-[0-9.]*tar.xz<" | \
|
|
|
|
sed 's/>nano-//g' | sed 's/.tar.xz<//g' | \
|
|
|
|
verson_find_greatest "$VERSION"
|
|
|
|
}
|