wok-next view popt/receipt @ rev 20906

Update homepages
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Aug 10 12:53:17 2018 +0300 (2018-08-10)
parents d08d2d235af0
children f48456621a9d
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="https://directory.fsf.org/wiki/Popt"
10 LFS="http://www.linuxfromscratch.org/blfs/view/stable/general/popt.html"
12 TARBALL="$PACKAGE-$VERSION.tar.gz"
13 WGET_URL="http://rpm5.org/files/popt/$TARBALL"
15 BUILD_DEPENDS="gettext"
16 SPLIT="popt-dev"
18 compile_rules() {
19 ./configure \
20 --disable-static \
21 $CONFIGURE_ARGS &&
22 fix libtool &&
23 make &&
24 make install
25 }
27 genpkg_rules() {
28 case $PACKAGE in
29 popt) copy @std;;
30 *-dev) copy @dev;;
31 esac
32 }