wok-next view popt/receipt @ rev 20037

Up sshttp (0-35s2), sshguard (2.0.0)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Oct 22 18:48:45 2017 +0200 (2017-10-22)
parents 4048d48a47c1
children 0e7893ac206d
line source
1 # SliTaz package receipt v2.
3 PACKAGE="popt"
4 VERSION="1.16"
5 CATEGORY="system-tools"
6 SHORT_DESC="Library for parsing command line options"
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="MIT"
9 WEB_SITE="http://directory.fsf.org/wiki/Popt"
10 HOST_ARCH="i486 arm"
12 TARBALL="$PACKAGE-$VERSION.tar.gz"
13 WGET_URL="http://rpm5.org/files/popt/$TARBALL"
15 BUILD_DEPENDS="gettext"
16 SPLIT="popt-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 ./configure \
22 --disable-static \
23 $CONFIGURE_ARGS &&
24 make && make install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 case $PACKAGE in
31 popt) copy @std;;
32 *-dev) copy @dev;;
33 esac
34 }