wok annotate xorg-xfontsel/receipt @ rev 22130

updated wifidog (1.1.5 -> 1.3.0)
author Hans-G?nter Theisgen
date Mon Nov 04 11:16:52 2019 +0100 (2019-11-04)
parents e936d31d469d
children 6fa24e4c1af3
rev   line source
jozee@3024 1 # SliTaz package receipt.
jozee@3024 2
jozee@3024 3 PACKAGE="xorg-xfontsel"
gokhlayeh@6993 4 VERSION="1.0.3"
jozee@3024 5 CATEGORY="x-window"
jozee@3024 6 SHORT_DESC="point and click selection utility of X11 font names"
jozee@3024 7 MAINTAINER="jozee@slitaz.org"
pascal@15579 8 LICENSE="MIT"
jozee@3024 9 SOURCE="xfontsel"
jozee@3024 10 TARBALL="$SOURCE-$VERSION.tar.bz2"
jozee@3024 11 WEB_SITE="http://xorg.freedesktop.org/"
jozee@3024 12 WGET_URL="$WEB_SITE/releases/individual/app/$TARBALL"
jozee@3024 13 TAGS="utility xorg fonts"
jozee@3024 14
pascal@15103 15 DEPENDS="xorg-libXaw"
pascal@15103 16 BUILD_DEPENDS="xorg-libXaw-dev"
pascal@15103 17
jozee@3024 18 # Rules to configure and make the package.ls sr
jozee@3024 19 compile_rules()
jozee@3024 20 {
jozee@3024 21 cd $src
jozee@3024 22 ./configure \
jozee@3024 23 --prefix=/usr \
jozee@3024 24 --mandir=/usr/share/man \
jozee@3024 25 $CONFIGURE_ARGS &&
jozee@3024 26 make &&
pascal@15103 27 make DESTDIR=$DESTDIR install
jozee@3024 28 }
jozee@3024 29
jozee@3024 30 # Rules to gen a SliTaz package suitable for Tazpkg.
jozee@3024 31 genpkg_rules()
jozee@3024 32 {
jozee@3024 33 mkdir -p $fs/usr/share
pascal@15103 34 cp -a $install/usr/bin $fs/usr
jozee@3024 35 }
jozee@3024 36