wok view multipath-tools/receipt @ rev 23681

Up libsvn (1.13.0)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Apr 26 15:38:37 2020 +0000 (2020-04-26)
parents 75937d22148a
children 241fb98cab1c
line source
1 # SliTaz package receipt.
3 PACKAGE="multipath-tools"
4 VERSION="0.8.3"
5 CATEGORY="x-window"
6 SHORT_DESC="Device Mapper multipathing driver (provide kpartx)."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="http://christophe.varoqui.free.fr/"
11 TARBALL="$PACKAGE-$VERSION.tgz"
12 WGET_URL="https://git.opensvc.com/?p=$PACKAGE/.git;a=snapshot;h=0.8.3;sf=tgz"
14 PROVIDE="kpartx"
15 DEPENDS="libaio libdevmapper readline udev"
16 BUILD_DEPENDS="libaio-dev libdevmapper-dev readline-dev udev-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 cd $src/kpartx
22 make &&
23 cd ..
24 #make LIB="/usr/lib" DESTDIR=${DESTDIR} install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/bin
31 cp -a $src/kpartx/kpartx $fs/usr/bin
32 }