wok view libconfuse/receipt @ rev 21339

updated gnuradio (3.7.10.1 -> 3.7.13.4)
author Hans-G?nter Theisgen
date Sat Apr 20 11:34:23 2019 +0100 (2019-04-20)
parents 5a22e9bbefe0
children 5ea0ce1cecc0
line source
1 # SliTaz package receipt.
3 PACKAGE="libconfuse"
4 VERSION="3.2.2"
5 CATEGORY="misc"
6 SHORT_DESC="Configuration file parser library."
7 MAINTAINER="mallory@sweetpeople.org"
8 LICENSE="ISC"
9 WEB_SITE="http://www.nongnu.org/confuse/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="https://github.com/martinh/$PACKAGE/archive/v$VERSION.tar.gz"
14 DEPENDS=""
15 BUILD_DEPENDS="automake libtool"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./autogen.sh &&
21 ./configure \
22 --prefix=/usr \
23 --infodir=/usr/share/info \
24 --mandir=/usr/share/man \
25 $CONFIGURE_ARGS
27 sed -i 's/ -Werror//' src/Makefile
29 make -j 1 &&
30 make DESTDIR=$DESTDIR install
31 }
33 # Rules to gen a SliTaz package suitable for Tazpkg.
34 genpkg_rules()
35 {
36 mkdir -p $fs/usr/lib
38 cp -a $install/usr/include $fs/usr
39 cp -a $install/usr/lib/*.*a $fs/usr/lib
40 cp -a $install/usr/lib/pkgconfig $fs/usr/lib
41 }