blob: 6033bf995b5334abbe1f2d0e3c4e9837218f00aa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# 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.16.2
release=1
source=(http://busybox.net/downloads/$name-$version.tar.bz2 \
config)
build() {
cd $name-$version
cp ../config .config
make
cp .config $PKGMK_HOME_DIR/config
make CONFIG_PREFIX=$PKG install
}
|