wok view blktrace/receipt @ rev 19224

Add bsc
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Jun 21 15:47:21 2016 +0200 (2016-06-21)
parents 4aed2b24febc
children a5b865e166cd
line source
1 # SliTaz package receipt.
3 PACKAGE="blktrace"
4 VERSION="1.0.5"
5 CATEGORY="system-tools"
6 SHORT_DESC="Block layer IO tracing."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://brick.kernel.dk/snaps"
11 WGET_URL="$WEB_SITE/$TARBALL"
13 DEPENDS="libaio"
14 BUILD_DEPENDS="libaio-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 sed -i 's|/usr/local|/usr|' Makefile
21 make DESTDIR=$DESTDIR install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr
28 cp -a $install/usr/bin $fs/usr
29 }