mirror of
https://github.com/pygos/build.git
synced 2024-11-22 02:59:47 +01:00
Add nano package
Signed-off-by: David Oberhollenzer <david.oberhollenzer@tele2.at>
This commit is contained in:
parent
dbbb1889f4
commit
5e7a7669eb
4 changed files with 31 additions and 0 deletions
|
@ -1,3 +1,4 @@
|
|||
coreutils
|
||||
bash
|
||||
rootfs
|
||||
nano
|
||||
|
|
|
@ -3,3 +3,4 @@ bash
|
|||
rootfs
|
||||
linux_modules
|
||||
firmware-rpi3
|
||||
nano
|
||||
|
|
28
pkg/nano/build
Normal file
28
pkg/nano/build
Normal 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
1
pkg/nano/depends
Normal file
|
@ -0,0 +1 @@
|
|||
ncurses
|
Loading…
Reference in a new issue