blob: 0a68f97991700cf951b298895b839c7c3fcbbbc2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# Description: Permet la construction d'un mini-système idéal pour une initrd ou système embarqué
# URL: http://www.busybox.net/
# Maintainer: NuTyX core team
# Packager: thierryn1 at hispeed dot ch
name=busybox
version=1.18.1
release=1
source=(http://busybox.net/downloads/$name-$version.tar.bz2 \
config)
build() {
cd $name-$version
cp ../config .config
make menuconfig
make
cp .config /tmp/config
make CONFIG_PREFIX=$PKG install
}
|