From 816dea89e3d07490c187d440df88c92d27faa7fb Mon Sep 17 00:00:00 2001 From: Juan RP Date: Sat, 18 Dec 2010 21:43:28 +0100 Subject: [PATCH] os-prober: update to 1.41. --- srcpkgs/os-prober/template | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/srcpkgs/os-prober/template b/srcpkgs/os-prober/template index f86d2005d2..6fb83d3857 100644 --- a/srcpkgs/os-prober/template +++ b/srcpkgs/os-prober/template @@ -1,12 +1,12 @@ # Template file for 'os-prober' pkgname=os-prober -version=1.39 +version=1.41 wrksrc=${pkgname} distfiles="${DEBIAN_SITE}/main/o/$pkgname/${pkgname}_$version.tar.gz" build_style=custom-install short_desc="Utility to detect other OSes on a set of drives" maintainer="Juan RP " -checksum=d5b440d5d8872a864c063d17981adedfacb74d9fb478a3a6fa572da6f34e4ccc +checksum=0f31cbcf25710fc39c5b26bf325fb6c11cadbd9b08d36d8a2c9d7c75fd8ef777 long_desc=" This package detects other OSes available on a system and outputs the results in a generic machine-readable format." @@ -18,7 +18,7 @@ Add_dependency full gettext do_build() { - cd ${wrksrc} && make || return 1 + cd ${wrksrc} && make } do_install() @@ -36,24 +36,24 @@ do_install() install -d ${DESTDIR}/usr/lib/os-probes/mounted install -d ${DESTDIR}/usr/lib/linux-boot-probes/mounted - cd ${wrksrc} || return 1 - install -m755 os-prober ${DESTDIR}/usr/bin || return 1 - install -m755 linux-boot-prober ${DESTDIR}/usr/bin || return 1 - install -m755 newns ${DESTDIR}/usr/lib/os-prober || return 1 - install -m644 common.sh ${DESTDIR}/usr/share/os-prober || return 1 + cd ${wrksrc} + install -m755 os-prober ${DESTDIR}/usr/bin + install -m755 linux-boot-prober ${DESTDIR}/usr/bin + install -m755 newns ${DESTDIR}/usr/lib/os-prober + install -m644 common.sh ${DESTDIR}/usr/share/os-prober cp -a linux-boot-probes/common/* \ - ${DESTDIR}/usr/lib/linux-boot-probes || return 1 + ${DESTDIR}/usr/lib/linux-boot-probes cp -a linux-boot-probes/mounted/common/* \ - ${DESTDIR}/usr/lib/linux-boot-probes/mounted || return 1 + ${DESTDIR}/usr/lib/linux-boot-probes/mounted cp -a linux-boot-probes/mounted/${ARCH}/* \ - ${DESTDIR}/usr/lib/linux-boot-probes/mounted || return 1 + ${DESTDIR}/usr/lib/linux-boot-probes/mounted - cp -a os-probes/common/* ${DESTDIR}/usr/lib/os-probes || return 1 + cp -a os-probes/common/* ${DESTDIR}/usr/lib/os-probes cp -a os-probes/init/common/* \ - ${DESTDIR}/usr/lib/os-probes/init || return 1 + ${DESTDIR}/usr/lib/os-probes/init cp -a os-probes/mounted/common/* \ - ${DESTDIR}/usr/lib/os-probes/mounted || return 1 + ${DESTDIR}/usr/lib/os-probes/mounted cp -a os-probes/mounted/${ARCH}/* \ - ${DESTDIR}/usr/lib/os-probes/mounted || return 1 + ${DESTDIR}/usr/lib/os-probes/mounted }