wok-next view radare2/receipt @ rev 21721

created recipes for efivar and efibootmgr
author Hans-G?nter Theisgen
date Tue Sep 01 10:09:15 2020 +0100 (2020-09-01)
parents 0d61f0b796d6
children
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 WEB_SITE="https://www.radare.org/r/"
11 TARBALL="$PACKAGE-$VERSION.tar.xz"
12 WGET_URL="${WEB_SITE}get/$TARBALL" # FIXME
14 compile_rules() {
15 ./configure \
16 --prefix=/usr \
17 $CONFIGURE_ARGS &&
18 make &&
19 make DESTDIR=$install install
20 }
22 genpkg_rules() {
23 cp -a $install/* $fs/
24 }