milis/talimatname/genel/b/busybox/talimat

29 lines
638 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Tanım: UNIX araçlarının hafif hallerinin tek ikilide yer alması
# URL: http://busybox.net/
# Paketçi: milisarge
# Gerekler:
# Grup: sistem
isim=busybox
surum=1.27.2
devir=1
kaynak=(http://busybox.net/downloads/$isim-$surum.tar.bz2)
derle() {
cd $isim-$surum
# https://bugs.gentoo.org/show_bug.cgi?id=310413
export CFLAGS+=' -fno-strict-aliasing'
[ "$CC" ] || CC=gcc
#for i in $SRC/*.patch; do
# patch -p1 -i $i
#done
make defconfig
make CC="$CC"
install -m 0755 -D busybox $PKG/sbin/busybox
make clean
export LDFLAGS+=' -static'
make defconfig
make CC="$CC"
install -m 0755 -D busybox $PKG/sbin/busybox.static
}