wok-next view xorg-xedit/receipt @ rev 19627
busybox: uclibc-cross-compiler-i486 is not compatible with aufs+tmpfs
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Wed Feb 08 18:20:24 2017 +0100 (2017-02-08) |
parents | e5d0fa35dcd1 |
children | ea3c4b76ea5d |
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 }