blob: 016f921682642f79c9ba1868b9a085cc526d4322 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
# Contributor: A. Wilcox <awilfox@adelielinux.org>
# Maintainer: A. Wilcox <awilfox@adelielinux.org>
pkgname=os-prober
pkgver=1.77
pkgrel=0
pkgdesc="Utility to detect operating systems on hard drives"
url="http://joeyh.name/code/os-prober/"
arch="all"
options="!check" # No test suite.
license="GPL-2.0+ AND GPL-1.0+"
depends="/bin/sh grub-mount"
makedepends=""
subpackages=""
source="http://deb.debian.org/debian/pool/main/o/os-prober/os-prober_$pkgver.tar.xz"
build() {
make
}
package() {
case $CTARGET_ARCH in
i486|i586|pmmx|x86*)
PROBE_ARCH=x86;;
ppc*)
PROBE_ARCH=powerpc;;
sparc*)
PROBE_ARCH=sparc;;
*)
PROBE_ARCH=$CTARGET_ARCH;;
esac
for probes in os-probes os-probes/mounted os-probes/init \
linux-boot-probes linux-boot-probes/mounted; do
mkdir -p "$pkgdir/usr/lib/$probes"
for file in $probes/common/*; do
install -Dm755 $file "$pkgdir/usr/lib/$probes"
done
if [ -e "$probes/${PROBE_ARCH}" ]; then
mkdir -p "$pkgdir/usr/lib/$probes/${PROBE_ARCH}"
cp -a $probes/${PROBE_ARCH}/* \
"$pkgdir/usr/lib/$probes/${PROBE_ARCH}"
fi
done
mkdir -p "$pkgdir"/usr/lib/os-prober "$pkgdir"/usr/bin
mkdir -p "$pkgdir"/usr/share/os-prober
install -dm700 "$pkgdir"/var/lib/os-prober
install -Dm755 newns "$pkgdir"/usr/lib/os-prober/
install -Dm755 os-prober "$pkgdir"/usr/bin/
install -Dm755 linux-boot-prober "$pkgdir"/usr/bin/
install -Dm755 common.sh "$pkgdir"/usr/share/os-prober/
}
sha512sums="4d9c22ccc4d950644a06a17ec4424aca5ff82aeb20052dc389dd451b6b9a1799c5a9438644a29093153730af42066abbbbb78f593f2564314c9adbd43f60e39b os-prober_1.77.tar.xz"
|