wok-next annotate searchmonkey/receipt @ rev 17488
Add firmware-iwlwifi-2000
author | Richard Dunbar <mojo@slitaz.org> |
---|---|
date | Wed Dec 31 11:31:10 2014 -0500 (2014-12-31) |
parents | 5b21196fec3f |
children | f48456621a9d |
rev | line source |
---|---|
pankso@533 | 1 # SliTaz package receipt |
pankso@533 | 2 |
pankso@533 | 3 PACKAGE="searchmonkey" |
pankso@533 | 4 VERSION="0.8.1" |
pascal@741 | 5 CATEGORY="utilities" |
pankso@533 | 6 SHORT_DESC="A fast real-time search engine using GTK+." |
pankso@533 | 7 MAINTAINER="pankso@slitaz.org" |
pascal@15282 | 8 LICENSE="LGPL2.1" |
pankso@533 | 9 TARBALL="$PACKAGE-$VERSION.tar.gz" |
pankso@533 | 10 WEB_SITE="http://searchmonkey.sourceforge.net/" |
pankso@533 | 11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" |
pankso@533 | 12 |
pascal@15282 | 13 DEPENDS="gtk+ libglade xorg-libXdamage" |
pascal@15282 | 14 BUILD_DEPENDS="gtk+-dev libglade-dev xorg-libXdamage-dev" |
pascal@15282 | 15 |
pankso@533 | 16 # Rules to configure and make the package. |
pankso@533 | 17 compile_rules() |
pankso@533 | 18 { |
pankso@533 | 19 cd $src |
slaxemulator@9039 | 20 ./configure && |
pascal@2524 | 21 make && |
slaxemulator@9039 | 22 make install |
pankso@533 | 23 } |
pankso@533 | 24 |
pankso@533 | 25 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@533 | 26 genpkg_rules() |
pankso@533 | 27 { |
slaxemulator@9039 | 28 mkdir -p $fs/usr |
pascal@15282 | 29 cp -a $install/usr/bin $fs/usr |
pankso@533 | 30 } |
pankso@533 | 31 |