wok view radare2/receipt @ rev 19008
busybox/fbvnc: wheelmouse support
| author | Pascal Bellard <pascal.bellard@slitaz.org> | 
|---|---|
| date | Mon Mar 28 18:04:41 2016 +0200 (2016-03-28) | 
| parents | |
| children | 6a81446dca86 | 
 line source
     1 # SliTaz package receipt.
     3 PACKAGE="radare2"
     4 VERSION="0.9.8"
     5 CATEGORY="development"
     6 SHORT_DESC="The reverse engineering framework."
     7 MAINTAINER="pascal.bellard@slitaz.org"
     8 LICENSE="GPL3 LGPL3"
     9 TARBALL="$PACKAGE-$VERSION.tar.xz"
    10 WEB_SITE="http://radare.org/"
    11 WGET_URL="${WEB_SITE}get/$TARBALL"
    13 # Rules to configure and make the package.
    14 compile_rules()
    15 {
    16 	./configure --prefix=/usr \
    17 		$CONFIGURE_ARGS &&
    18 	make &&
    19 	make DESTDIR=$DESTDIR install
    20 }
    22 # Rules to gen a SliTaz package suitable for Tazpkg.
    23 genpkg_rules()
    24 {
    25 	cp -a $install/* $fs/
    26 }