wok annotate 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
rev   line source
hackdorte@19312 1 # SliTaz package receipt.
hackdorte@19312 2
hackdorte@19312 3 PACKAGE="edma"
hackdorte@19312 4 VERSION="0.18.6"
hackdorte@19312 5 CATEGORY="development"
hackdorte@19312 6 SHORT_DESC="Open and modular development environment."
hackdorte@19312 7 MAINTAINER="hackdorte@sapo.pt"
hackdorte@19312 8 LICENSE="LGPL"
hackdorte@19312 9 GNU_FTP="http://ftp.gnu.org/gnu"
hackdorte@19312 10 TARBALL="gnu${PACKAGE}-$VERSION.tar.gz"
hackdorte@19312 11 WEB_SITE="http://www.gnu.org/software/edma/"
hackdorte@19312 12 WGET_URL="$GNU_FTP/$PACKAGE/$TARBALL"
hackdorte@19312 13 TAGS="environment development framework"
hackdorte@19312 14
hackdorte@19312 15 DEPENDS="gecb gidfwizard"
hackdorte@19312 16
hackdorte@19312 17 BUILD_DEPENDS="gcc autoconf glibc-dev pkg-config automake"
hackdorte@19312 18
hackdorte@19312 19 # Rules to configure and make the package.
hackdorte@19312 20 compile_rules()
hackdorte@19312 21 {
hackdorte@19312 22 ./configure \
hackdorte@19312 23 --prefix=/usr \
hackdorte@19312 24 $CONFIGURE_ARGS &&
hackdorte@19312 25 make $MAKEFLAGS &&
hackdorte@19312 26 make DESTDIR=$DESTDIR install
hackdorte@19312 27 }
hackdorte@19312 28
hackdorte@19312 29 # Rules to gen a SliTaz package suitable for Tazpkg.
hackdorte@19312 30 genpkg_rules()
hackdorte@19312 31 {
hackdorte@19312 32 mkdir -p $fs/usr
hackdorte@19312 33 cp -a $install/* $fs/
hackdorte@19312 34 }