mirror of
https://github.com/pygos/build.git
synced 2024-11-14 07:27:10 +01:00
fc6d7292c5
Signed-off-by: David Oberhollenzer <david.oberhollenzer@tele2.at>
29 lines
No EOL
594 B
Text
29 lines
No EOL
594 B
Text
VERSION="3.0"
|
|
SRCDIR="nano-${VERSION}"
|
|
TARBALL="${SRCDIR}.tar.xz"
|
|
URL="https://ftp.gnu.org/gnu/nano/"
|
|
SHA256SUM="e0a5bca354514e64762c987c200a8758b05e7bcced3b00b3e48ea0a2d383c8a0"
|
|
DEPENDS="ncurses"
|
|
|
|
prepare() {
|
|
return
|
|
}
|
|
|
|
build() {
|
|
run_configure "$1" --enable-utf8
|
|
make -j $NUMJOBS
|
|
}
|
|
|
|
deploy() {
|
|
local SOURCE="$1"
|
|
local DEPLOY="$2"
|
|
|
|
make DESTDIR="$DEPLOY" install
|
|
cp "$SCRIPTDIR/pkg/$PKGNAME/rootfs_files.txt" "$DEPLOY"
|
|
}
|
|
|
|
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"
|
|
} |