diff options
Diffstat (limited to 'community/os-prober/PKGBUILD')
-rw-r--r-- | community/os-prober/PKGBUILD | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/community/os-prober/PKGBUILD b/community/os-prober/PKGBUILD index d2651a30c..5491a6166 100644 --- a/community/os-prober/PKGBUILD +++ b/community/os-prober/PKGBUILD @@ -1,18 +1,18 @@ -# $Id: PKGBUILD 83235 2013-01-28 14:43:38Z tredaelli $ +# $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.57 -pkgrel=3 +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' 'mips64el') license=('GPL3') depends=('sh') source=(ftp://ftp.debian.org/debian/pool/main/o/${pkgname}/${pkgname}_${pkgver}.tar.gz) -md5sums=('67548b17d55cc32c1168bb5a4061170d') -sha256sums=('d63c6cbb825a7e411aac5e4805edc6db2fbf77a59282b71c10bd29723b8d860c') +md5sums=('11406f47d9536bccb655456d6d92d111') +sha256sums=('db1d936c0356e7a7c2dab5e9aebdf4132e745fd2972ba5016ed6690a0445ea93') build() { cd "$srcdir/$pkgname-$pkgver" @@ -35,7 +35,7 @@ package() { 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 ]] && install -m755 -t "$pkgdir/usr/lib/$dir" "$dir"/x86/* + [[ -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 |