summaryrefslogtreecommitdiff
path: root/community/os-prober
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-08-11 01:21:34 -0700
committerroot <root@rshg054.dnsready.net>2013-08-11 01:21:34 -0700
commit18a41d682d6e91e0d28fce23eb75292f477bd620 (patch)
treebce8f660d7d0b6541cadbc49bf1bac2434e4c0c6 /community/os-prober
parent0ade1da67addf154d93c6a6399b0a3d5a18a3336 (diff)
Sun Aug 11 01:21:31 PDT 2013
Diffstat (limited to 'community/os-prober')
-rw-r--r--community/os-prober/PKGBUILD44
1 files changed, 0 insertions, 44 deletions
diff --git a/community/os-prober/PKGBUILD b/community/os-prober/PKGBUILD
deleted file mode 100644
index e3af2e380..000000000
--- a/community/os-prober/PKGBUILD
+++ /dev/null
@@ -1,44 +0,0 @@
-# $Id: PKGBUILD 92922 2013-06-19 10:19:18Z tredaelli $
-# Maintainer: Timothy Redaelli <timothy.redaelli@gmail.com>
-# Contributor: darkcoder <mario_vazq@hotmail.com>
-
-pkgname=os-prober
-pkgver=1.58
-pkgrel=1
-pkgdesc="Utility to detect other OSes on a set of drives"
-url="http://joey.kitenet.net/code/os-prober/"
-arch=('i686' 'x86_64')
-license=('GPL3')
-depends=('sh')
-source=(ftp://ftp.debian.org/debian/pool/main/o/${pkgname}/${pkgname}_${pkgver}.tar.gz)
-md5sums=('11406f47d9536bccb655456d6d92d111')
-sha256sums=('db1d936c0356e7a7c2dab5e9aebdf4132e745fd2972ba5016ed6690a0445ea93')
-
-build() {
- cd "$srcdir/$pkgname-$pkgver"
-
- # adjust lib dir to allow detection of 64-bit distros
- sed -i -e "s:/lib/ld\*\.so\*:/lib*/ld*.so*:g" os-probes/mounted/common/90linux-distro
-
- rm -f Makefile
- make newns
-}
-
-package() {
- cd "$srcdir/$pkgname-$pkgver"
-
- install -Dm755 linux-boot-prober "$pkgdir"/usr/bin/linux-boot-prober
- install -Dm755 os-prober "$pkgdir"/usr/bin/os-prober
- install -Dm755 newns "$pkgdir"/usr/lib/os-prober/newns
- install -Dm755 common.sh $pkgdir/usr/share/os-prober/common.sh
-
- for dir in os-probes os-probes/mounted os-probes/init linux-boot-probes linux-boot-probes/mounted; do
- install -dm755 "$pkgdir/usr/lib/$dir"
- install -m755 -t "$pkgdir/usr/lib/$dir" "$dir"/common/*
- [[ -d "$dir"/x86 ]] && cp -r "$dir"/x86/* "$pkgdir/usr/lib/$dir"
- done
-
- install -Dm755 os-probes/mounted/powerpc/20macosx "$pkgdir"/usr/lib/os-probes/mounted/20macosx
-
- install -dm755 "$pkgdir"/var/lib/os-prober
-}