wok-6.x annotate xorg-xedit/receipt @ rev 17340

slitaz-configs-base: force update; xorg-libXaw: disable-xaw6
author Xander Ziiryanoff <psychomaniak@xakep.ru>
date Wed Nov 05 21:51:36 2014 +0100 (2014-11-05)
parents eb8067417980
children 5d53e8ccbc8d
rev   line source
pascal@11203 1 # SliTaz package receipt.
pascal@11203 2
pascal@11203 3 PACKAGE="xorg-xedit"
pascal@11203 4 VERSION="1.2.0"
pascal@11203 5 CATEGORY="x-window"
pascal@11203 6 SHORT_DESC="Simple text editor for X."
pascal@11203 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@15579 8 LICENSE="MIT"
pascal@11203 9 SOURCE="xedit"
pascal@11203 10 TARBALL="$SOURCE-$VERSION.tar.bz2"
pascal@11203 11 WEB_SITE="http://xorg.freedesktop.org/"
pascal@11203 12 WGET_URL="$WEB_SITE/releases/individual/app/$TARBALL"
pascal@15101 13
gokhlayeh@11471 14 DEPENDS="xorg-libXaw xorg-libXt xorg-libXmu xorg-libX11"
pascal@11203 15
pascal@11203 16 # Rules to configure and make the package.
pascal@11203 17 compile_rules()
pascal@11203 18 {
pascal@11203 19 cd $src
pascal@11203 20 ./configure \
pascal@11203 21 --prefix=/usr \
pascal@11203 22 --mandir=/usr/share/man \
pascal@11203 23 $CONFIGURE_ARGS &&
pascal@11203 24 make &&
pascal@11203 25 make DESTDIR=$DESTDIR install
pascal@11203 26 }
pascal@11203 27
pascal@11203 28 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@11203 29 genpkg_rules()
pascal@11203 30 {
psychomaniak@17340 31 mkdir -p $fs/etc $fs/usr/lib
pascal@15101 32 cp -a $install/usr/bin $fs/usr
pascal@15101 33 cp -a $install/usr/lib/X11 $fs/usr/lib
psychomaniak@17340 34 cp -a $install/etc $fs
pascal@11203 35 chmod +x $fs/usr/bin/*
pascal@11203 36 }
pascal@11203 37