milis/talimatname/genel/o/os-prober/talimat

53 lines
1.5 KiB
Plaintext
Raw Normal View History

2017-10-27 20:46:27 +02:00
# Tanım: Bir sürücü grubundaki diğer işletim sistemlerini bulmak için yardımcı program.
2017-04-06 13:38:12 +02:00
# URL: https://packages.debian.org/source/sid/os-prober
2017-10-27 20:46:27 +02:00
# Paketçi: milisarge
# Gerekler:
2016-02-24 01:27:23 +01:00
name=os-prober
version=1.71
release=1
source=(http://ftp.de.debian.org/debian/pool/main/o/os-prober/os-prober_1.71.tar.xz)
2016-02-24 01:27:23 +01:00
build() {
cd $name-$version
# Compile newns
make
# Create a hierharchy for os-prober package, and copy files into it.
mkdir -p $PKG/var/lib/$name
mkdir -p $PKG/usr/bin
cp linux-boot-prober $PKG/usr/bin
cp os-prober $PKG/usr/bin
mkdir -p $PKG/usr/lib/$name
cp newns $PKG/usr/lib/$name
mkdir -p $PKG/usr/lib/os-probes
cp os-probes/common/* $PKG/usr/lib/os-probes
mkdir -p $PKG/usr/lib/os-probes/mounted
mkdir -p $PKG/usr/lib/os-probes/mounted/efi
cp os-probes/mounted/common/* $PKG/usr/lib/os-probes/mounted
cp os-probes/mounted/x86/efi/* $PKG/usr/lib/os-probes/mounted/efi
rm -r os-probes/mounted/x86/efi
cp os-probes/mounted/x86/* $PKG/usr/lib/os-probes/mounted
mkdir -p $PKG/usr/lib/os-probes/init
cp os-probes/init/common/* $PKG/usr/lib/os-probes/init
mkdir -p $PKG/usr/lib/linux-boot-probes
cp linux-boot-probes/common/* $PKG/usr/lib/linux-boot-probes/
mkdir $PKG/usr/lib/linux-boot-probes/mounted
cp linux-boot-probes/mounted/common/* $PKG/usr/lib/linux-boot-probes/mounted
cp linux-boot-probes/mounted/x86/* $PKG/usr/lib/linux-boot-probes/mounted
mkdir -p $PKG/usr/share/$name
cp common.sh $PKG/usr/share/$name
chmod +x $PKG/usr/share/$name/common.sh
# End of making os-prober directory hierarchy.
tar -cvjf os-prober#1.70.pkg.tar.bz2 $PKG/*
}