wok-next view open-cobol/receipt @ rev 20957

Random updates
author Aleksej Bobylev <al.bobylev@gmail.com>
date Wed Sep 05 15:26:05 2018 +0300 (2018-09-05)
parents 4a67f7e79846
children d5aab818505e
line source
1 # SliTaz package receipt v2.
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 WEB_SITE="http://www.opencobol.org/"
10 REPOLOGY="gnucobol"
12 TARBALL="$PACKAGE-$VERSION.tar.gz"
13 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
15 BUILD_DEPENDS="gmp ncurses db gcc ncurses-dev gmp-dev db-dev bison flex"
17 compile_rules() {
18 export LDFLAGS="$LDFLAGS -lpthread"
20 ./configure $CONFIGURE_ARGS &&
21 fix libtool &&
22 make &&
23 make DESTDIR=$DESTDIR install
24 }
26 genpkg_rules() {
27 copy @std @dev
28 DEPENDS="gmp ncurses db gcc"
29 }