wok annotate matchbox-window-manager/receipt @ rev 23926

Add minesweeper & pacman
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Aug 23 15:10:17 2020 +0000 (2020-08-23)
parents d3eb5f4b53ea
children 241fb98cab1c
rev   line source
pankso@10838 1 # SliTaz package receipt.
pankso@10838 2
pankso@10838 3 PACKAGE="matchbox-window-manager"
pankso@10838 4 VERSION="1.2"
pankso@10838 5 CATEGORY="x-window"
pankso@10838 6 SHORT_DESC="Matchbox Window Manager."
pankso@10838 7 MAINTAINER="pankso@slitaz.org"
pascal@15584 8 LICENSE="GPL2"
pankso@10838 9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
pankso@10838 10 WEB_SITE="http://matchbox-project.org/"
pascal@17869 11 WGET_URL="${WEB_SITE}sources/$PACKAGE/$VERSION/$TARBALL"
al@17501 12 TAGS="window-manager"
pankso@10838 13
pankso@10838 14 DEPENDS="gtk+ startup-notification libmatchbox"
pascal@19807 15 BUILD_DEPENDS="gtk+-dev startup-notification-dev libmatchbox-dev expat-dev"
pankso@10838 16
pankso@10838 17 # Rules to configure and make the package.
pankso@10838 18 compile_rules()
pankso@10838 19 {
pankso@10838 20 ./configure \
pankso@10838 21 --sysconfdir=/etc \
pankso@10838 22 --enable-expat \
pankso@10838 23 --enable-startup-notification \
pankso@10838 24 --enable-session \
pankso@10838 25 $CONFIGURE_ARGS &&
pankso@10838 26 make && make install
pankso@10838 27 }
pankso@10838 28
pankso@10838 29 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@10838 30 genpkg_rules()
pankso@10838 31 {
pankso@10838 32 mkdir -p $fs/usr
pankso@10838 33 cp -a $install/etc $fs
pankso@10838 34 cp -a $install/usr/bin $fs/usr
pankso@10838 35 cp -a $install/usr/share $fs/usr
pankso@10838 36 }