wok-next view popt/receipt @ rev 20486

outguess: fix install path
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Mar 12 10:46:52 2018 +0100 (2018-03-12)
parents 9278a60d6895
children 10df65db91ad
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"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="http://rpm5.org/files/popt/$TARBALL"
14 BUILD_DEPENDS="gettext"
15 SPLIT="popt-dev"
17 compile_rules() {
18 ./configure \
19 --disable-static \
20 $CONFIGURE_ARGS &&
21 make && make install
22 }
24 genpkg_rules() {
25 case $PACKAGE in
26 popt) copy @std;;
27 *-dev) copy @dev;;
28 esac
29 }