diff options
author | tnut <tnut at nutyx dot com> | 2011-10-15 15:22:49 +0200 |
---|---|---|
committer | tnut <tnut at nutyx dot com> | 2011-10-15 15:22:49 +0200 |
commit | 8b17199721367674d8af530ac633761f01c6695a (patch) | |
tree | fe86c0c0a623c525478bfee90178fcb676870ea1 /extra/busybox/Pkgfile | |
parent | e102c7fe38fab7a06686956c5692f9024fc8b3c9 (diff) | |
download | nutyx-pakxe-8b17199721367674d8af530ac633761f01c6695a.tar.gz nutyx-pakxe-8b17199721367674d8af530ac633761f01c6695a.tar.bz2 nutyx-pakxe-8b17199721367674d8af530ac633761f01c6695a.tar.xz nutyx-pakxe-8b17199721367674d8af530ac633761f01c6695a.zip |
busybox dans extra
Diffstat (limited to 'extra/busybox/Pkgfile')
-rw-r--r-- | extra/busybox/Pkgfile | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/extra/busybox/Pkgfile b/extra/busybox/Pkgfile new file mode 100644 index 000000000..e651d9112 --- /dev/null +++ b/extra/busybox/Pkgfile @@ -0,0 +1,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.4 +release=1 +source=(http://busybox.net/downloads/$name-$version.tar.bz2 \ + config) + +build() { + cd $name-$version + cp ../config .config + make menuconfig + make + cp .config `prt-get printf %p --filter=$name`/$name/config + make CONFIG_PREFIX=$PKG install + +} |