mirror of
https://github.com/pygos/build.git
synced 2024-11-05 03:27:10 +01:00
2235d8e6a0
Upgrade the following packages to newer releases: - bash - busybox - coreutils - ethtool - iproute2 - libbsd - nano - ncurses - sqlite3 Signed-off-by: David Oberhollenzer <david.oberhollenzer@tele2.at>
29 lines
487 B
Text
29 lines
487 B
Text
VERSION="2.9.3"
|
|
SRCDIR="nano-${VERSION}"
|
|
TARBALL="${SRCDIR}.tar.xz"
|
|
URL="https://ftp.gnu.org/gnu/nano/"
|
|
SHA256SUM="7783bcfd4b2d5dc0bf64d4bd07b1a19e7ba3c91da881a4249772a36b972d4012"
|
|
DEPENDS="ncurses"
|
|
|
|
prepare() {
|
|
return
|
|
}
|
|
|
|
build() {
|
|
local INPUT="$1"
|
|
local OUTPUT="$2"
|
|
|
|
$INPUT/configure --prefix="" --host="$TARGET" --enable-utf8
|
|
|
|
make -j $NUMJOBS
|
|
}
|
|
|
|
deploy() {
|
|
local SOURCE="$1"
|
|
local BUILD="$2"
|
|
local DEPLOY="$3"
|
|
|
|
make DESTDIR="$DEPLOY" install-strip
|
|
|
|
rm -r "$DEPLOY/share/"
|
|
}
|