wok-6.x annotate screen/receipt @ rev 14617
Up libxcb (1.9.1), see http://www.x.org/wiki/Development/Security/Advisory-2013-05-23
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sat Jun 01 15:41:58 2013 +0200 (2013-06-01) |
parents | 731695dfaf97 |
children | 7896f0694ef6 |
rev | line source |
---|---|
pascal@901 | 1 # SliTaz package receipt. |
pascal@901 | 2 |
pascal@901 | 3 PACKAGE="screen" |
pascal@2174 | 4 VERSION="4.0.3" |
pascal@901 | 5 CATEGORY="system-tools" |
pascal@901 | 6 SHORT_DESC="Terminal multiplexer." |
pascal@901 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@901 | 8 TARBALL="$PACKAGE-$VERSION.tar.gz" |
pascal@901 | 9 WEB_SITE="http://www.gnu.org/software/screen" |
pascal@901 | 10 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL" |
pascal@2173 | 11 CONFIG_FILES="/etc/screenrc" |
slaxemulator@10341 | 12 SUGGESTED="screen-terminfo" |
slaxemulator@10341 | 13 |
gokhlayeh@8980 | 14 DEPENDS="elfutils" |
gokhlayeh@8342 | 15 BUILD_DEPENDS="ncursesw-extra" |
pascal@901 | 16 |
pascal@10928 | 17 # http://fungi.yuggoth.org/vsp4s/ Vertical split ^A V |
pascal@10928 | 18 PATCH=http://vsp4sdl.yuggoth.org/wrp_vertical_split_0.3_4.0.2.diff.bz2 |
pascal@14337 | 19 EXTRA_SOURCE_FILES="$PATCH" |
pascal@10928 | 20 |
pascal@901 | 21 # Rules to configure and make the package. |
pascal@901 | 22 compile_rules() |
pascal@901 | 23 { |
pascal@901 | 24 cd $src |
pascal@10928 | 25 [ -s $SOURCES_REPOSITORY/$(basename $PATCH) ] || |
pascal@10928 | 26 wget -P $SOURCES_REPOSITORY $PATCH |
pascal@10928 | 27 bzcat $SOURCES_REPOSITORY/$(basename $PATCH) | patch -p1 |
slaxemulator@10341 | 28 ./configure --with-sys-screenrc=/etc/screenrc $CONFIGURE_ARGS && |
gokhlayeh@8980 | 29 make && make -j1 DESTDIR=$DESTDIR install || return 1 |
slaxemulator@8540 | 30 mkdir -p $DESTDIR/usr/share/terminfo |
slaxemulator@8540 | 31 tic -o $DESTDIR/usr/share/terminfo terminfo/screeninfo.src |
slaxemulator@8540 | 32 mkdir -p $DESTDIR/etc |
slaxemulator@8540 | 33 cp $src/etc/screenrc $DESTDIR/etc |
pascal@901 | 34 } |
pascal@901 | 35 |
pascal@901 | 36 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@901 | 37 genpkg_rules() |
pascal@901 | 38 { |
slaxemulator@8540 | 39 mkdir -p $fs/usr/bin $fs/usr/share |
pascal@901 | 40 cp -a $_pkg/usr/bin/screen-$VERSION $fs/usr/bin/screen |
pascal@901 | 41 cp -a $_pkg/usr/share/screen $fs/usr/share |
gokhlayeh@8898 | 42 cp -a $_pkg/etc $fs |
pascal@901 | 43 } |
pascal@901 | 44 |