wok view unfs3/receipt @ rev 22781

updated freetype and freetype-dev (2.6.4 -> 2.10.1)
author Hans-G?nter Theisgen
date Sun Jan 26 09:26:49 2020 +0100 (2020-01-26)
parents 23c3aed67cd9
children 3105f866bc3e
line source
1 # SliTaz package receipt.
3 PACKAGE="unfs3"
4 VERSION="0.9.22"
5 CATEGORY="network"
6 SHORT_DESC="User-land NFSv3 Server"
7 MAINTAINER="erjo@slitaz.org"
8 LICENSE="BSD"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://unfs3.sourceforge.net/"
11 WGET_URL="http://ovh.dl.sourceforge.net/sourceforge/unfs3/${TARBALL}"
12 TAGS="network nfs"
13 CONFIG_FILES="/etc/exports"
15 DEPENDS="portmap"
16 BUILD_DEPENDS="flex"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 ./configure --prefix=/usr --infodir=/usr/share/info \
22 --sysconfdir=/etc \
23 --mandir=/usr/share/man $CONFIGURE_ARGS &&
24 make -j 1
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/bin
31 install -g root -o root -m 0755 -s $src/unfsd $fs/usr/bin
33 mkdir -p $fs/etc/init.d
34 install -g root -o root -m 0644 stuff/etc/exports $fs/etc
35 install -g root -o root -m 0755 stuff/etc/init.d/unfsd $fs/etc/init.d
36 }
38 post_install()
39 {
41 echo -e "\nTo starts $PACKAGE server you can run :\n"
42 echo "/etc/init.d/$PACKAGE start"
43 echo -e "Or add $PACKAGE to RUN_DAEMONS in /etc/rcS.conf\n"
44 }