wok-next view libidl/receipt @ rev 21715

Up cookutils (1146)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Jul 28 07:53:22 2020 +0000 (2020-07-28)
parents 342b30daff76
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="libidl"
4 VERSION="0.8.14"
5 CATEGORY="development"
6 SHORT_DESC="IDL Compiling Library"
7 MAINTAINER="devel@slitaz.org"
8 LICENSE="LGPL2"
9 WEB_SITE="https://github.com/GNOME/libIDL"
11 TARBALL="libIDL-$VERSION.tar.bz2"
12 WGET_URL="$GNOME_MIRROR/libIDL/${VERSION%.*}/$TARBALL"
14 BUILD_DEPENDS="bison flex glib-dev"
15 SPLIT="$PACKAGE-dev"
17 compile_rules() {
18 ./configure \
19 --cache-file=config.cache \
20 $CONFIGURE_ARGS &&
21 fix libtool &&
22 make &&
23 make install
24 }
26 genpkg_rules() {
27 case $PACKAGE in
28 libidl)
29 copy @std
30 PROVIDE="libIDL"
31 DEPENDS="glib"
32 ;;
33 libidl-dev)
34 copy @dev
35 PROVIDE="libIDL-dev"
36 DEPENDS="libidl glib-dev"
37 ;;
38 esac
39 }