wok-6.x annotate unfs3/receipt @ rev 19889
Up: gimp (2.8.20)
author | Alexander Medvedev <devl547@gmail.com> |
---|---|
date | Tue Apr 04 19:53:27 2017 +0000 (2017-04-04) |
parents | cb16742e0fa6 |
children | 951896e3e5b3 |
rev | line source |
---|---|
erjo@171 | 1 # SliTaz package receipt. |
erjo@171 | 2 |
erjo@171 | 3 PACKAGE="unfs3" |
erjo@2984 | 4 VERSION="0.9.22" |
pankso@211 | 5 CATEGORY="network" |
erjo@171 | 6 SHORT_DESC="User-land NFSv3 Server" |
erjo@784 | 7 MAINTAINER="erjo@slitaz.org" |
pascal@15601 | 8 LICENSE="BSD" |
erjo@171 | 9 TARBALL="$PACKAGE-$VERSION.tar.gz" |
erjo@171 | 10 WEB_SITE="http://unfs3.sourceforge.net/" |
erjo@171 | 11 WGET_URL="http://ovh.dl.sourceforge.net/sourceforge/unfs3/${TARBALL}" |
jozee@4974 | 12 TAGS="network nfs" |
pascal@5884 | 13 CONFIG_FILES="/etc/exports" |
erjo@171 | 14 |
pascal@15601 | 15 DEPENDS="portmap" |
pascal@15601 | 16 BUILD_DEPENDS="flex" |
pascal@15601 | 17 |
erjo@171 | 18 # Rules to configure and make the package. |
erjo@171 | 19 compile_rules() |
erjo@171 | 20 { |
erjo@171 | 21 cd $src |
erjo@171 | 22 ./configure --prefix=/usr --infodir=/usr/share/info \ |
erjo@171 | 23 --sysconfdir=/etc \ |
pascal@5884 | 24 --mandir=/usr/share/man $CONFIGURE_ARGS && |
erjo@171 | 25 make |
erjo@171 | 26 } |
erjo@171 | 27 |
erjo@171 | 28 # Rules to gen a SliTaz package suitable for Tazpkg. |
erjo@171 | 29 genpkg_rules() |
erjo@171 | 30 { |
erjo@171 | 31 mkdir -p $fs/usr/bin |
erjo@171 | 32 install -g root -o root -m 0755 -s $src/unfsd $fs/usr/bin |
erjo@171 | 33 |
erjo@171 | 34 mkdir -p $fs/etc/init.d |
pascal@4342 | 35 install -g root -o root -m 0644 stuff/etc/exports $fs/etc |
erjo@171 | 36 install -g root -o root -m 0755 stuff/etc/init.d/unfsd $fs/etc/init.d |
erjo@171 | 37 } |
erjo@171 | 38 |
erjo@171 | 39 post_install() |
erjo@171 | 40 { |
erjo@171 | 41 |
erjo@171 | 42 echo -e "\nTo starts $PACKAGE server you can run :\n" |
erjo@171 | 43 echo "/etc/init.d/$PACKAGE start" |
erjo@171 | 44 echo -e "Or add $PACKAGE to RUN_DAEMONS in /etc/rcS.conf\n" |
erjo@171 | 45 } |