wok annotate haserl/receipt @ rev 22042
gcc83-lib-base: do NOT provide gcc-lib-base
Currently BOTH gcc-lib-base and gcc83-lib-base are installed on my SliTaz system. So, with the current (and longstanding) tazpkg limitations I can't update just gcc-lib-base: tazpkg always updates gcc83-lib-base for me instead. Now I can't run Firefox, Vivaldi, Chrome, etc. I think because of gcc-lib-base, but I not sure 1bsolutely.
Currently BOTH gcc-lib-base and gcc83-lib-base are installed on my SliTaz system. So, with the current (and longstanding) tazpkg limitations I can't update just gcc-lib-base: tazpkg always updates gcc83-lib-base for me instead. Now I can't run Firefox, Vivaldi, Chrome, etc. I think because of gcc-lib-base, but I not sure 1bsolutely.
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Tue Oct 22 12:55:54 2019 +0300 (2019-10-22) |
parents | 380ffe05937a |
children | ba7cbdb5749c |
rev | line source |
---|---|
milka@1134 | 1 # SliTaz package receipt. |
milka@1134 | 2 |
milka@1134 | 3 PACKAGE="haserl" |
Hans-G?nter@21027 | 4 VERSION="0.9.35" |
milka@1134 | 5 CATEGORY="network" |
Hans-G?nter@21027 | 6 SHORT_DESC="Small program that uses shell or Lua script to create cgi web scripts." |
milka@1134 | 7 MAINTAINER="milka@konstelacioj.info" |
pascal@15000 | 8 LICENSE="GPL2" |
Hans-G?nter@21027 | 9 WEB_SITE="http://haserl.sourceforge.net/" |
Hans-G?nter@21027 | 10 |
milka@1134 | 11 TARBALL="$PACKAGE-$VERSION.tar.gz" |
milka@1134 | 12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" |
milka@1134 | 13 |
pascal@15000 | 14 DEPENDS="" |
pascal@15000 | 15 BUILD_DEPENDS="glibc-dev" |
Hans-G?nter@21027 | 16 SUGGESTED="bash lua lua-dev" |
pascal@15000 | 17 |
milka@1134 | 18 # Rules to configure and make the package. |
milka@1134 | 19 compile_rules() |
milka@1134 | 20 { |
Hans-G?nter@21027 | 21 ./configure \ |
Hans-G?nter@21027 | 22 --bindir=/usr/bin \ |
Hans-G?nter@21027 | 23 $CONFIGURE_ARGS && |
Hans-G?nter@21027 | 24 make -j 1 && |
pascal@15000 | 25 make DESTDIR=$DESTDIR install |
milka@1134 | 26 } |
milka@1134 | 27 |
milka@1134 | 28 # Rules to gen a SliTaz package suitable for Tazpkg. |
milka@1134 | 29 genpkg_rules() |
milka@1134 | 30 { |
milka@1134 | 31 mkdir -p $fs/usr |
pascal@15000 | 32 cp -a $install/usr/bin $fs/usr |
Hans-G?nter@21027 | 33 } |