wok rev 22255
updated xorg-xedit (1.2.0 -> 1.2.2)
author | Hans-G?nter Theisgen |
---|---|
date | Tue Nov 12 17:15:14 2019 +0100 (2019-11-12) |
parents | 5926bb54ac71 |
children | 5c95c69d6518 |
files | xorg-xedit/receipt |
line diff
1.1 --- a/xorg-xedit/receipt Tue Nov 12 17:09:31 2019 +0100 1.2 +++ b/xorg-xedit/receipt Tue Nov 12 17:15:14 2019 +0100 1.3 @@ -1,26 +1,26 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="xorg-xedit" 1.7 -VERSION="1.2.0" 1.8 +VERSION="1.2.2" 1.9 CATEGORY="x-window" 1.10 +TAGS="text-editor" 1.11 SHORT_DESC="Simple text editor for X." 1.12 MAINTAINER="pascal.bellard@slitaz.org" 1.13 LICENSE="MIT" 1.14 +WEB_SITE="https://www.x.org/wiki/" 1.15 + 1.16 SOURCE="xedit" 1.17 TARBALL="$SOURCE-$VERSION.tar.bz2" 1.18 -WEB_SITE="http://xorg.freedesktop.org/" 1.19 -WGET_URL="$WEB_SITE/releases/individual/app/$TARBALL" 1.20 -TAGS="text-editor" 1.21 +WGET_URL="$XORG_MIRROR/app/$TARBALL" 1.22 1.23 -DEPENDS="xorg-libXaw xorg-libXt xorg-libXmu xorg-libX11" 1.24 +DEPENDS="xorg-libX11 xorg-libXaw xorg-libXmu xorg-libXt" 1.25 1.26 # Rules to configure and make the package. 1.27 compile_rules() 1.28 { 1.29 - cd $src 1.30 - ./configure \ 1.31 - --prefix=/usr \ 1.32 - --mandir=/usr/share/man \ 1.33 + ./configure \ 1.34 + --prefix=/usr \ 1.35 + --mandir=/usr/share/man \ 1.36 $CONFIGURE_ARGS && 1.37 make && 1.38 make DESTDIR=$DESTDIR install 1.39 @@ -29,10 +29,12 @@ 1.40 # Rules to gen a SliTaz package suitable for Tazpkg. 1.41 genpkg_rules() 1.42 { 1.43 - mkdir -p $fs/etc $fs/usr/lib 1.44 - cp -a $install/usr/bin $fs/usr 1.45 - cp -a $install/usr/lib/X11 $fs/usr/lib 1.46 - cp -a $install/etc $fs 1.47 + mkdir -p $fs/etc 1.48 + mkdir -p $fs/usr/lib 1.49 + 1.50 + cp -a $install/usr/bin $fs/usr 1.51 + cp -a $install/usr/lib/X11 $fs/usr/lib 1.52 + cp -a $install/etc $fs 1.53 + 1.54 chmod +x $fs/usr/bin/* 1.55 } 1.56 -