wok-next annotate p910nd/receipt @ rev 14122
gvfs:add samba support splitting it in gvfs-smb
author | ernia <monghitri@aruba.it> |
---|---|
date | Mon Feb 25 18:42:40 2013 +0000 (2013-02-25) |
parents | 897158f0f904 |
children | a436a235f098 |
rev | line source |
---|---|
pascal@8405 | 1 # SliTaz package receipt. |
pascal@8405 | 2 |
pascal@8405 | 3 PACKAGE="p910nd" |
pascal@13518 | 4 VERSION="0.95" |
pascal@8405 | 5 CATEGORY="network" |
pascal@8405 | 6 SHORT_DESC="Network to printer (/dev/lp* or /dev/usb/lp*) gateway." |
pascal@8405 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@8405 | 8 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
pascal@8405 | 9 WEB_SITE="http://$PACKAGE.sourceforge.net/" |
pascal@8405 | 10 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" |
pascal@8405 | 11 TAGS="printer" |
pascal@8405 | 12 |
pascal@8405 | 13 # Rules to configure and make the package. |
pascal@8405 | 14 compile_rules() |
pascal@8405 | 15 { |
pascal@8405 | 16 cd $src |
pascal@8405 | 17 make CFLAGS=-DLOCKFILE_DIR=\\\"/var/lock\\\" && |
pascal@13518 | 18 make DESTDIR=$DESTDIR install |
pascal@8405 | 19 } |
pascal@8405 | 20 |
pascal@8405 | 21 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@8405 | 22 genpkg_rules() |
pascal@8405 | 23 { |
pascal@8405 | 24 mkdir -p $fs/usr $fs/etc/init.d |
pascal@13518 | 25 cp -a $install/usr/sbin $fs/usr |
pascal@13518 | 26 sed '1,/%description/d;/%pre/,$d' $src/p910nd.spec > $WOK/$PACKAGE/description.txt |
pascal@8405 | 27 ln -s daemon $fs/etc/init.d/p910nd |
pascal@8405 | 28 } |
pascal@8405 | 29 |