blob: fcfb51d074272a819db03e9d74a59e9c97fd6908 (
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.17.3
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
}
|