wok view edma/receipt @ rev 19312

Add GNU EDMA Project.]
author Leonardo Laporte <hackdorte@sapo.pt>
date Tue Jul 12 03:16:09 2016 -0300 (2016-07-12)
parents
children
line source
1 # SliTaz package receipt.
3 PACKAGE="edma"
4 VERSION="0.18.6"
5 CATEGORY="development"
6 SHORT_DESC="Open and modular development environment."
7 MAINTAINER="hackdorte@sapo.pt"
8 LICENSE="LGPL"
9 GNU_FTP="http://ftp.gnu.org/gnu"
10 TARBALL="gnu${PACKAGE}-$VERSION.tar.gz"
11 WEB_SITE="http://www.gnu.org/software/edma/"
12 WGET_URL="$GNU_FTP/$PACKAGE/$TARBALL"
13 TAGS="environment development framework"
15 DEPENDS="gecb gidfwizard"
17 BUILD_DEPENDS="gcc autoconf glibc-dev pkg-config automake"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 ./configure \
23 --prefix=/usr \
24 $CONFIGURE_ARGS &&
25 make $MAKEFLAGS &&
26 make DESTDIR=$DESTDIR install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr
33 cp -a $install/* $fs/
34 }