wok-next view bvi/receipt @ rev 21349

build efl with meson
author Hans-G?nter Theisgen
date Thu Apr 09 16:25:22 2020 +0100 (2020-04-09)
parents 8c8391016d94
children 90e4058fa9c1
line source
1 # SliTaz package receipt v2.
3 PACKAGE="bvi"
4 VERSION="1.4.0"
5 CATEGORY="development"
6 SHORT_DESC="Binary VIsual (hex editor) based on the vi texteditor"
7 MAINTAINER="devel@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="http://bvi.sourceforge.net/"
11 TARBALL="$PACKAGE-$VERSION.src.tar.gz"
12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
14 BUILD_DEPENDS="ncurses-dev"
16 compile_rules() {
17 ./configure \
18 --prefix=/usr \
19 --mandir=/usr/share/man \
20 --with-ncurses \
21 $CONFIGURE_ARGS &&
22 make $MAKEFLAGS &&
23 make DESTDIR=$install install
24 }
26 genpkg_rules() {
27 copy @std
28 DEPENDS="ncurses"
29 TAGS="binary development editor hex vi"
30 }