wok view xorg-xedit/receipt @ rev 20936

updated fpm2 again (0.76.1 -> 0.79)
author Hans-G?nter Theisgen
date Sat Mar 02 16:28:51 2019 +0100 (2019-03-02)
parents e5d0fa35dcd1
children ff6ccb1497d0
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 LICENSE="MIT"
9 SOURCE="xedit"
10 TARBALL="$SOURCE-$VERSION.tar.bz2"
11 WEB_SITE="http://xorg.freedesktop.org/"
12 WGET_URL="$WEB_SITE/releases/individual/app/$TARBALL"
13 TAGS="text-editor"
15 DEPENDS="xorg-libXaw xorg-libXt xorg-libXmu xorg-libX11"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 ./configure \
22 --prefix=/usr \
23 --mandir=/usr/share/man \
24 $CONFIGURE_ARGS &&
25 make &&
26 make DESTDIR=$DESTDIR install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/etc $fs/usr/lib
33 cp -a $install/usr/bin $fs/usr
34 cp -a $install/usr/lib/X11 $fs/usr/lib
35 cp -a $install/etc $fs
36 chmod +x $fs/usr/bin/*
37 }