wok-next view atm-tools/receipt @ rev 19943

Up xine-lib (1.2.8)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Oct 16 10:16:55 2017 +0200 (2017-10-16)
parents 8f50006d2661
children 757d032c55c7
line source
1 # SliTaz package receipt v2.
3 PACKAGE="atm-tools"
4 VERSION="2.5.2"
5 CATEGORY="system-tools"
6 SHORT_DESC="User space tools for ATM"
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="http://linux-atm.sourceforge.net/"
11 TARBALL="linux-atm-$VERSION.tar.gz"
12 WGET_URL="$SF_MIRROR/linux-atm/$TARBALL"
14 BUILD_DEPENDS="perl"
15 SPLIT="atm-tools-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure \
21 --sysconfdir=/etc \
22 $CONFIGURE_ARGS &&
23 make -j1 &&
24 make -j1 DESTDIR=$DESTDIR install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 case $PACKAGE in
31 atm-tools)
32 copy @std
33 DEPENDS="flex"
34 CONFIG_FILES="/etc/atmsigd.conf /etc/hosts.atm"
35 ;;
36 atm-tools-dev)
37 copy @dev
38 ;;
39 esac
40 }