wok-current annotate p910nd/receipt @ rev 24830
busybox-1.31.1: inserted CONFIG_FEATURE_SYSLOG_INFO=y in config and config-ssfs
author | Hans-G?nter Theisgen |
---|---|
date | Thu Mar 24 06:49:50 2022 +0100 (2022-03-24) |
parents | 6c0d5218c80f |
children | 9981cfce1dd8 |
rev | line source |
---|---|
pascal@8405 | 1 # SliTaz package receipt. |
pascal@8405 | 2 |
pascal@8405 | 3 PACKAGE="p910nd" |
Hans-G?nter@21656 | 4 VERSION="0.97" |
pascal@8405 | 5 CATEGORY="network" |
Hans-G?nter@21656 | 6 TAGS="printer" |
pascal@8405 | 7 SHORT_DESC="Network to printer (/dev/lp* or /dev/usb/lp*) gateway." |
pascal@8405 | 8 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@14781 | 9 LICENSE="GPL2" |
Hans-G?nter@21656 | 10 WEB_SITE="http://$PACKAGE.sourceforge.net/" |
Hans-G?nter@21656 | 11 |
pascal@8405 | 12 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
pascal@8405 | 13 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" |
pascal@8405 | 14 |
pascal@24396 | 15 # What is the latest version available today? |
pascal@24396 | 16 current_version() |
pascal@24396 | 17 { |
pascal@24396 | 18 wget -O - https://github.com/kenyapcomau/p910nd/tags 2>/dev/null | \ |
pascal@24396 | 19 sed '/archive.*tar/!d;s|.*/v*\(.*\).tar.*|\1|;q' |
pascal@24396 | 20 } |
pascal@24396 | 21 |
pascal@8405 | 22 # Rules to configure and make the package. |
pascal@8405 | 23 compile_rules() |
pascal@8405 | 24 { |
pascal@8405 | 25 make CFLAGS=-DLOCKFILE_DIR=\\\"/var/lock\\\" && |
pascal@13518 | 26 make DESTDIR=$DESTDIR install |
pascal@8405 | 27 } |
pascal@8405 | 28 |
pascal@8405 | 29 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@8405 | 30 genpkg_rules() |
pascal@8405 | 31 { |
Hans-G?nter@21656 | 32 mkdir -p $fs/usr |
Hans-G?nter@21656 | 33 mkdir -p $fs/etc/init.d |
Hans-G?nter@21656 | 34 |
pascal@13518 | 35 cp -a $install/usr/sbin $fs/usr |
Hans-G?nter@21656 | 36 |
pascal@13518 | 37 sed '1,/%description/d;/%pre/,$d' $src/p910nd.spec > $WOK/$PACKAGE/description.txt |
pascal@8405 | 38 ln -s daemon $fs/etc/init.d/p910nd |
pascal@8405 | 39 } |