2018-05-25 11:40:14 +02:00
|
|
|
VERSION="2.9.7"
|
2018-01-11 21:34:34 +01:00
|
|
|
SRCDIR="nano-${VERSION}"
|
|
|
|
TARBALL="${SRCDIR}.tar.xz"
|
|
|
|
URL="https://ftp.gnu.org/gnu/nano/"
|
2018-05-25 11:40:14 +02:00
|
|
|
SHA256SUM="b64ab017305b1777e97b5b9b07b31db8aeebfc3e8719f61e8da1cf3866d344bd"
|
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"
|
|
|
|
}
|