wok view libdaq/receipt @ rev 19159
/etc/init.d/*: use 'action' in pair with 'status'.
'action' returns translated message, so why not to add full translatable /etc/init.d/* content
'action' returns translated message, so why not to add full translatable /etc/init.d/* content
| author | Aleksej Bobylev <al.bobylev@gmail.com> | 
|---|---|
| date | Thu May 26 20:16:45 2016 +0300 (2016-05-26) | 
| parents | cbb550460ee1 | 
| children | a78610b2eb47 | 
 line source
     1 # SliTaz package receipt.
     3 PACKAGE="libdaq"
     4 VERSION="0.6.2"
     5 CATEGORY="network"
     6 SHORT_DESC="Data Acquisition library for packet I/O."
     7 MAINTAINER="slaxemulator@gmail.com"
     8 LICENSE="GPL2"
     9 TARBALL="$PACKAGE-$VERSION.tar.gz"
    10 WEB_SITE="http://www.snort.org/"
    11 WGET_URL="http://www.snort.org/downloads/1221"
    13 DEPENDS="libpcap"
    14 BUILD_DEPENDS="libpcap-dev flex bison wget"
    16 # Rules to configure and make the package.
    17 compile_rules()
    18 {
    19 	cd $src
    20 	./configure \
    21 		$CONFIGURE_ARGS &&
    22 	make -j1 && make -j1 DESTDIR=$DESTDIR install
    23 }
    25 # Rules to gen a SliTaz package suitable for Tazpkg.
    26 genpkg_rules()
    27 {
    28 	mkdir -p $fs/usr/lib/daq
    29 	cp -a $install/usr/lib/daq/*.so* $fs/usr/lib/daq
    30 	cp -a $install/usr/lib/*.so* $fs/usr/lib
    31 }