wok annotate bmpanel2/receipt @ rev 21914

updated sleuthkit and sleuthkit-dev (3.2.3 -> 4.6.7)
author Hans-G?nter Theisgen
date Fri Oct 04 17:41:01 2019 +0100 (2019-10-04)
parents 5d53e8ccbc8d
children 5ea0ce1cecc0
rev   line source
jozee@6821 1 # SliTaz package receipt.
jozee@6821 2
jozee@6821 3 PACKAGE="bmpanel2"
jozee@6821 4 VERSION="2.1pre1"
jozee@6821 5 CATEGORY="misc"
jozee@6821 6 MAINTAINER="jozee@slitaz.org"
pascal@15482 7 LICENSE="MIT"
jozee@6821 8 SHORT_DESC="Nice NETWM-compatible panel for X11"
pascal@20671 9 WEB_SITE="https://github.com/nsf/bmpanel2"
jozee@6821 10 TARBALL="$PACKAGE-$VERSION.tar.gz"
jozee@6821 11 WGET_URL="$WEB_SITE/files/$TARBALL"
al@17501 12 TAGS="panel"
jozee@6821 13
pascal@15142 14 DEPENDS="pango cairo xorg-libX11 xorg-libXrender"
pascal@15142 15 BUILD_DEPENDS="cmake python-dev xorg-libXext-dev cairo-dev pango-dev"
pascal@15142 16
jozee@6821 17 # Rules to configure and make the package.
jozee@6821 18
jozee@6821 19 compile_rules() {
pascal@15142 20 cd $src
pascal@15142 21 # fix "with" statement for python 2.5
pascal@15142 22 sed -i "s/import sys, os/from __future__ import with_statement \nimport sys, os /" extra/py/${PACKAGE}.py
pascal@15142 23 cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=RELEASE .
pascal@15142 24 make
pascal@15142 25 make DESTDIR=$DESTDIR install
jozee@6821 26 }
jozee@6821 27
jozee@6821 28 # Rules to gen a SliTaz package suitable for Tazpkg.
jozee@6821 29 genpkg_rules()
jozee@6821 30 {
jozee@6821 31 mkdir -p $fs/usr/share/$PACKAGE/themes $fs/usr/bin
pascal@15142 32 cp -a $install/usr/bin/$PACKAGE $fs/usr/bin
jozee@6821 33 # cp only native and transpy themes
pascal@15142 34 cp -a $install/usr/share/$PACKAGE/themes/transpy $fs/usr/share/$PACKAGE/themes
pascal@15142 35 cp -a $install/usr/share/$PACKAGE/themes/native $fs/usr/share/$PACKAGE/themes
jozee@6821 36
jozee@6821 37
jozee@6821 38 }