wok-current view radare2/receipt @ rev 20284
Up spl (0.7.7)
| author | Pascal Bellard <pascal.bellard@slitaz.org> | 
|---|---|
| date | Mon Apr 02 10:14:55 2018 +0200 (2018-04-02) | 
| 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 }