wok-next view genext2fs/receipt @ rev 21323

lcdnurse: added build dependency wxWidgets28
author Hans-G?nter Theisgen
date Wed Dec 11 14:19:01 2019 +0100 (2019-12-11)
parents 77cfd35fcd5d
children
line source
1 # SliTaz package receipt.
3 PACKAGE="genext2fs"
4 VERSION="1.4.1"
5 CATEGORY="base-system"
6 SHORT_DESC="Generates an ext2 filesystem as a normal (i.e. non-root) user"
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="http://genext2fs.sourceforge.net/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
14 compile_rules() {
15 ./configure \
16 --prefix=/usr \
17 $CONFIGURE_ARGS &&
18 make &&
19 make DESTDIR=$install install
20 }
22 genpkg_rules() {
23 mkdir -p $fs/usr
24 cp -a $install/usr/bin $fs/usr
25 }