wok view udns/receipt @ rev 4982

libical-dev: fix include path
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Feb 25 09:54:36 2010 +0100 (2010-02-25)
parents 4c0f69a92618
children d67788c5a8d3
line source
1 # SliTaz package receipt.
3 PACKAGE="udns"
4 VERSION="0.0.9"
5 CATEGORY="network"
6 SHORT_DESC="Syncronous and asyncronous DNS resolver."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 TARBALL="${PACKAGE}_$VERSION.tar.gz"
9 WEB_SITE="http://www.corpit.ru/mjt/$PACKAGE.html"
10 WGET_URL="http://www.corpit.ru/mjt/$PACKAGE/$TARBALL"
11 TAGS="network DNS"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 ./configure && make staticlib sharedlib rblcheck_s dnsget_s
18 }
20 # Rules to gen a SliTaz package suitable for Tazpkg.
21 genpkg_rules()
22 {
23 mkdir -p $fs/usr/lib $fs/usr/bin
24 cp -a $src/libudns.so.0 $fs/usr/lib
25 ln -s /usr/lib/libudns.so.0 $fs/usr/lib/libudns.so
26 cp -a $src/dnsget_s $fs/usr/bin/dnsget
27 cp -a $src/rblcheck_s $fs/usr/bin/rblcheck
28 }