wok view xorg-xedit/receipt @ rev 15207

Add mktorrent
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Sep 10 12:15:52 2013 +0000 (2013-09-10)
parents c4b90fef608f
children eb8067417980
line source
1 # SliTaz package receipt.
3 PACKAGE="xorg-xedit"
4 VERSION="1.2.0"
5 CATEGORY="x-window"
6 SHORT_DESC="Simple text editor for X."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 SOURCE="xedit"
9 TARBALL="$SOURCE-$VERSION.tar.bz2"
10 WEB_SITE="http://xorg.freedesktop.org/"
11 WGET_URL="$WEB_SITE/releases/individual/app/$TARBALL"
13 DEPENDS="xorg-libXaw xorg-libXt xorg-libXmu xorg-libX11"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure \
20 --prefix=/usr \
21 --mandir=/usr/share/man \
22 $CONFIGURE_ARGS &&
23 make &&
24 make DESTDIR=$DESTDIR install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/share $fs/usr/lib
31 cp -a $install/usr/bin $fs/usr
32 cp -a $install/usr/lib/X11 $fs/usr/lib
33 chmod +x $fs/usr/bin/*
34 }