summaryrefslogtreecommitdiffstats
path: root/busybox/Pkgfile
blob: 980b1491d4fb8bf87a383ac116b97c140f1d8697 (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.19.2
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
	
}