wok view libasyncns/receipt @ rev 14107

Up: libwekkit-video (1.8.3) + Build fix with bison 2.6
author Dominique Corbex <domcox@slitaz.org>
date Sun Feb 24 09:19:03 2013 +0100 (2013-02-24)
parents
children 76b72f1ad63c
line source
1 # SliTaz package receipt.
3 PACKAGE="libasyncns"
4 VERSION="0.8"
5 CATEGORY="development"
6 SHORT_DESC="A C library for Linux/Unix for executing name service queries asynchronously."
7 MAINTAINER="slaxemulator@gmail.com"
8 DEPENDS="glibc-base"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://0pointer.de/lennart/projects/libasyncns"
11 WGET_URL="$WEB_SITE/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 ./configure \
18 --prefix=/usr \
19 --infodir=/usr/share/info \
20 --mandir=/usr/share/man \
21 --disable-lynx \
22 $CONFIGURE_ARGS &&
23 make && make DESTDIR=$PWD/_pkg install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/lib
30 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
31 }