wok annotate scrollz/receipt @ rev 21874

facter: fix build
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Sep 28 11:31:06 2019 +0200 (2019-09-28)
parents 10baa41a7882
children 3a5fb1938b95
rev   line source
paul@16461 1 # SliTaz package receipt.
paul@16461 2
paul@16461 3 PACKAGE="scrollz"
paul@16461 4 VERSION="2.2.3"
paul@16461 5 CATEGORY="network"
paul@16461 6 SHORT_DESC="ScrollZ IRC client."
paul@16461 7 MAINTAINER="paul@slitaz.org"
pascal@16660 8 LICENSE="BSD"
paul@16461 9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
pascal@20679 10 WEB_SITE="http://www.scrollz.info/"
paul@16461 11 WGET_URL="git|git://github.com/ScrollZ/ScrollZ"
paul@16461 12
paul@16461 13 DEPENDS=""
paul@16461 14 BUILD_DEPENDS="git bzip2"
paul@16461 15
paul@16461 16 # Rules to configure and make the package.
paul@16461 17 compile_rules()
paul@16461 18 {
paul@16461 19 cd $src
paul@16461 20 ./configure --prefix=/usr
paul@16461 21 make && make DESTDIR=$DESTDIR install
paul@16461 22 }
paul@16461 23
paul@16461 24 # Rules to gen a SliTaz package suitable for Tazpkg.
paul@16461 25 genpkg_rules()
paul@16461 26 {
paul@16461 27 cp -a $install/usr $fs
paul@16461 28 # remove stuff
paul@16461 29 rm -rf $fs/usr/share/man
paul@16461 30 }
paul@16461 31