wok-current view open-cobol/receipt @ rev 15001
Add some GPL2 licenses
| author | Pascal Bellard <pascal.bellard@slitaz.org> | 
|---|---|
| date | Sat Aug 10 17:48:05 2013 +0000 (2013-08-10) | 
| parents | 1da943e93655 | 
| children | ee63fcd28c2d | 
 line source
     1 # SliTaz package receipt.
     3 PACKAGE="open-cobol"
     4 VERSION="1.1"
     5 CATEGORY="development"
     6 SHORT_DESC="Cobol compiler."
     7 MAINTAINER="pascal.bellard@slitaz.org"
     8 LICENSE="GPL2"
     9 TARBALL="$PACKAGE-$VERSION.tar.gz"
    10 WEB_SITE="http://www.opencobol.org/"
    11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
    13 DEPENDS="gmp ncurses db gcc"
    14 BUILD_DEPENDS="$DEPENDS ncurses-dev gmp-dev db-dev bison flex"
    16 # Rules to configure and make the package.
    17 compile_rules()
    18 {
    19 	cd $src
    20 	./configure --prefix=/usr --mandir=/usr/share/man \
    21 		--localstatedir=/var \
    22 	$CONFIGURE_ARGS &&
    23 	make &&
    24 	make DESTDIR=$DESTDIR install
    25 }
    27 # Rules to gen a SliTaz package suitable for Tazpkg.   
    28 genpkg_rules()                                      
    29 {
    30 	cp -a $install/usr $fs
    31 }