wok-4.x annotate webkit-web-inspector/receipt @ rev 3147
Add: Webkit Web Inspector
author | Mallory MOLLO <mallory@skyrock.com> |
---|---|
date | Sat May 23 21:27:26 2009 +0200 (2009-05-23) |
parents | |
children | 3a17ee6ec8c1 |
rev | line source |
---|---|
mallory@3147 | 1 # SliTaz package receipt. |
mallory@3147 | 2 |
mallory@3147 | 3 PACKAGE="webkit-web-inspector" |
mallory@3147 | 4 VERSION="" |
mallory@3147 | 5 CATEGORY="" |
mallory@3147 | 6 SHORT_DESC="" |
mallory@3147 | 7 MAINTAINER="" |
mallory@3147 | 8 DEPENDS="" |
mallory@3147 | 9 TARBALL="$PACKAGE-$VERSION.tar.gz" |
mallory@3147 | 10 WEB_SITE="" |
mallory@3147 | 11 WGET_URL="" |
mallory@3147 | 12 |
mallory@3147 | 13 # Rules to configure and make the package. |
mallory@3147 | 14 compile_rules() |
mallory@3147 | 15 { |
mallory@3147 | 16 cd $src |
mallory@3147 | 17 ./configure \ |
mallory@3147 | 18 --prefix=/usr \ |
mallory@3147 | 19 --infodir=/usr/share/info \ |
mallory@3147 | 20 --mandir=/usr/share/man \ |
mallory@3147 | 21 $CONFIGURE_ARGS && |
mallory@3147 | 22 make && make DESTDIR=$PWD/_pkg install |
mallory@3147 | 23 } |
mallory@3147 | 24 |
mallory@3147 | 25 # Rules to gen a SliTaz package suitable for Tazpkg. |
mallory@3147 | 26 genpkg_rules() |
mallory@3147 | 27 { |
mallory@3147 | 28 mkdir -p $fs/usr |
mallory@3147 | 29 cp -a $_pkg/usr/bin $fs/usr |
mallory@3147 | 30 } |
mallory@3147 | 31 |