wok annotate xorg-xfontsel/receipt @ rev 15103

xorg-xfontsel: no more /usr/share/X11 ?
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Aug 14 13:01:34 2013 +0000 (2013-08-14)
parents c514cc4854d8
children eb8067417980
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"
jozee@3024 8 SOURCE="xfontsel"
jozee@3024 9 TARBALL="$SOURCE-$VERSION.tar.bz2"
jozee@3024 10 WEB_SITE="http://xorg.freedesktop.org/"
jozee@3024 11 WGET_URL="$WEB_SITE/releases/individual/app/$TARBALL"
jozee@3024 12 TAGS="utility xorg fonts"
jozee@3024 13
pascal@15103 14 DEPENDS="xorg-libXaw"
pascal@15103 15 BUILD_DEPENDS="xorg-libXaw-dev"
pascal@15103 16
jozee@3024 17 # Rules to configure and make the package.ls sr
jozee@3024 18 compile_rules()
jozee@3024 19 {
jozee@3024 20 cd $src
jozee@3024 21 ./configure \
jozee@3024 22 --prefix=/usr \
jozee@3024 23 --mandir=/usr/share/man \
jozee@3024 24 $CONFIGURE_ARGS &&
jozee@3024 25 make &&
pascal@15103 26 make DESTDIR=$DESTDIR install
jozee@3024 27 }
jozee@3024 28
jozee@3024 29 # Rules to gen a SliTaz package suitable for Tazpkg.
jozee@3024 30 genpkg_rules()
jozee@3024 31 {
jozee@3024 32 mkdir -p $fs/usr/share
pascal@15103 33 cp -a $install/usr/bin $fs/usr
jozee@3024 34 }
jozee@3024 35