wok-next view pmail/receipt @ rev 21267

updated freeradius (2.1.12 -> 3.0.20)
author Hans-G?nter Theisgen
date Fri Dec 06 17:16:20 2019 +0100 (2019-12-06)
parents 42380dbaadb7
children
line source
1 # SliTaz package receipt.
3 PACKAGE="pmail"
4 VERSION="0.9.16"
5 CATEGORY="network"
6 SHORT_DESC="Mail transfer client based on the protocols of POP3 and SMTP"
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="http://www.ibiblio.org/pub/Linux/system/mail/pop/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="${WEB_SITE}$TARBALL"
14 compile_rules() {
15 sed \
16 -e "s|BINDIR = @prefix@/bin|BINDIR = $install/usr/bin|" \
17 -e "s|MANDIR = @prefix@/man/man1|MANDIR = $install/usr/share/man/man1|" \
18 -i Makefile.in
19 mkdir -p $install/usr/bin $install/usr/share/man/man1
21 ./configure \
22 --prefix=/usr \
23 --infodir=/usr/share/info \
24 --mandir=/usr/share/man \
25 $CONFIGURE_ARGS &&
26 make -j1 &&
27 make DESTDIR=$install install
28 }
30 genpkg_rules() {
31 mkdir -p $fs/usr
32 cp -a $install/usr/bin $fs/usr
33 }