wok annotate wmctrl/receipt @ rev 22802

freetype: add freetype-config
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Jan 28 09:23:39 2020 +0100 (2020-01-28)
parents 0dd067e30013
children 2a0479881723
rev   line source
jozee@2731 1 # SliTaz package receipt.
jozee@2731 2
jozee@2731 3 PACKAGE="wmctrl"
Hans-G?nter@22137 4 VERSION="1.07"
yuripourre@18084 5 CATEGORY="utilities"
Hans-G?nter@22137 6 SHORT_DESC="A UNIX/Linux command line tool to interact with an EWMH/NetWM compatible X Window Manager."
Hans-G?nter@22137 7 MAINTAINER="yuripourre@gmail.com"
yuripourre@18084 8 LICENSE="GPL"
Hans-G?nter@22137 9 WEB_SITE="http://tripie.sweb.cz/utils/wmctrl/"
Hans-G?nter@22137 10
Hans-G?nter@22137 11 TARBALL="$PACKAGE-$VERSION.tar.gz"
Hans-G?nter@22137 12 WGET_URL="${WEB_SITE}dist/$TARBALL"
Hans-G?nter@22137 13
yuripourre@18084 14 DEPENDS="glib"
yuripourre@18084 15 BUILD_DEPENDS="glib-dev"
pascal@15000 16
jozee@2731 17 # Rules to configure and make the package.
jozee@2731 18 compile_rules()
jozee@2731 19 {
yuripourre@18084 20 ./configure \
yuripourre@18084 21 --prefix=/usr \
yuripourre@18084 22 --mandir=/usr/share/man\
yuripourre@18084 23 $CONFIGURE_ARGS &&
pascal@2843 24 make &&
pascal@15000 25 make DESTDIR=$DESTDIR install
jozee@2731 26 }
jozee@2731 27
jozee@2731 28 genpkg_rules()
jozee@2731 29 {
yuripourre@18084 30 mkdir -p $fs/usr
pascal@15000 31 cp -a $install/usr/bin $fs/usr
jozee@2731 32 }