1
0
Fork 0
mirror of https://github.com/pygos/build.git synced 2024-05-18 19:46:14 +02:00

Add nano package

Signed-off-by: David Oberhollenzer <david.oberhollenzer@tele2.at>
This commit is contained in:
David Oberhollenzer 2018-01-11 21:34:34 +01:00
parent dbbb1889f4
commit 5e7a7669eb
4 changed files with 31 additions and 0 deletions

View file

@ -1,3 +1,4 @@
coreutils
bash
rootfs
nano

View file

@ -3,3 +3,4 @@ bash
rootfs
linux_modules
firmware-rpi3
nano

28
pkg/nano/build Normal file
View file

@ -0,0 +1,28 @@
VERSION="2.9.2"
SRCDIR="nano-${VERSION}"
TARBALL="${SRCDIR}.tar.xz"
URL="https://ftp.gnu.org/gnu/nano/"
SHA256SUM="4eccb7451b5729ce8abae8f9a5679f32e41ae58df73ea86b850ec45b10a83d55"
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/"
}

1
pkg/nano/depends Normal file
View file

@ -0,0 +1 @@
ncurses