wok-6.x annotate sic/receipt @ rev 16519
spacefm: add bash as dep and close #107
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Fri Apr 25 14:32:37 2014 +0200 (2014-04-25) |
parents | cad02130ef1c |
children | c5ddf763228a |
rev | line source |
---|---|
pascal@9987 | 1 # SliTaz package receipt. |
pascal@9987 | 2 |
pascal@9987 | 3 PACKAGE="sic" |
pascal@9987 | 4 VERSION="1.1" |
pascal@9987 | 5 CATEGORY="network" |
pascal@9987 | 6 SHORT_DESC="Simple IRC client." |
pascal@9987 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@15593 | 8 LICENSE="MIT" |
pascal@9987 | 9 TARBALL="$PACKAGE-$VERSION.tar.gz" |
pascal@9987 | 10 WEB_SITE="http://tools.suckless.org/sic" |
pascal@9987 | 11 WGET_URL="http://dl.suckless.org/tools/$TARBALL" |
pascal@9987 | 12 |
pascal@9987 | 13 # Rules to configure and make the package. |
pascal@9987 | 14 compile_rules() |
pascal@9987 | 15 { |
pascal@9987 | 16 cd $src |
pascal@9987 | 17 make clean && |
pascal@9987 | 18 make PREFIX=/usr DESTDIR=$DESTDIR install |
pascal@9987 | 19 } |
pascal@9987 | 20 |
pascal@9987 | 21 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@9987 | 22 genpkg_rules() |
pascal@9987 | 23 { |
pascal@9987 | 24 mkdir -p $fs/usr |
pascal@15593 | 25 cp -a $install/usr/bin $fs/usr |
pascal@9987 | 26 } |
pascal@9987 | 27 |