wok-next annotate codeblocks/receipt @ rev 21196
updated scrollz again (2.2.3 -> 2.3)
author | Hans-G?nter Theisgen |
---|---|
date | Thu Oct 03 16:09:40 2019 +0100 (2019-10-03) |
parents | d5aab818505e |
children | 5e724a85150c |
rev | line source |
---|---|
al@20569 | 1 # SliTaz package receipt v2. |
mallory@3102 | 2 |
mallory@3102 | 3 PACKAGE="codeblocks" |
slaxemulator@7561 | 4 VERSION="10.05" |
mallory@3102 | 5 CATEGORY="development" |
al@20569 | 6 SHORT_DESC="An open source, cross platform, free C++ IDE" |
al@21020 | 7 MAINTAINER="devel@slitaz.org" |
pascal@14999 | 8 LICENSE="GPL3" |
al@20569 | 9 WEB_SITE="http://www.codeblocks.org/" |
al@20569 | 10 |
mallory@3102 | 11 TARBALL="$PACKAGE-$VERSION-src.tar.bz2" |
mallory@3102 | 12 WGET_URL="http://download.berlios.de/codeblocks/$TARBALL" |
mallory@3102 | 13 |
al@21078 | 14 BUILD_DEPENDS="wxWidgets28-dev libxdmcp-dev libxau-dev expat-dev \ |
al@20244 | 15 autoconf automake libtool zip gnome-icon-theme hunspell-dev gamin-dev \ |
al@20915 | 16 boost-dev" |
pascal@14999 | 17 |
al@20569 | 18 compile_rules() { |
pascal@12652 | 19 # Binutils 2.22 break many packages build without LDFLAGS set correctly. |
pascal@17670 | 20 export LDFLAGS="$LDFLAGS -Wl,--copy-dt-needed-entries" |
al@20569 | 21 |
mallory@3102 | 22 ./configure \ |
mallory@3102 | 23 --with-contrib-plugins="all, -help" \ |
mallory@3102 | 24 $CONFIGURE_ARGS && |
al@20569 | 25 fix libtool && |
gokhlayeh@11574 | 26 make $MAKEFLAGS && |
al@21020 | 27 make DESTDIR=$install install |
mallory@3102 | 28 } |
mallory@3102 | 29 |
al@20569 | 30 genpkg_rules() { |
al@20569 | 31 copy @std @dev |
al@20569 | 32 DEPENDS="wxWidgets28" |
al@20569 | 33 TAGS="IDE" |
mallory@3102 | 34 } |