wok-6.x annotate urxvt/receipt @ rev 5055
libdevmapper: reconfigure udev after addition of new rule
author | Rohit Joshi <jozee@slitaz.org> |
---|---|
date | Sat Mar 06 19:02:39 2010 +0000 (2010-03-06) |
parents | 3115c291f303 |
children | abd5344ad8c6 |
rev | line source |
---|---|
sygne@1982 | 1 # SliTaz package receipt. |
sygne@1982 | 2 |
sygne@1982 | 3 PACKAGE="urxvt" |
sygne@1982 | 4 VERSION="9.06" |
sygne@1982 | 5 CATEGORY="utilities" |
sygne@1982 | 6 SHORT_DESC="terminal with unicode support" |
sygne@1982 | 7 MAINTAINER="sygne@ombres.eu" |
pascal@5007 | 8 DEPENDS="fontconfig xorg expat freetype xorg-libXft zlib gcc-lib-base" |
sygne@1982 | 9 BUILD_DEPENDS="xorg-dev xorg-libXft-dev xorg-libX11-dev" |
sygne@1982 | 10 SOURCE="rxvt-unicode" |
sygne@1982 | 11 TARBALL="$SOURCE-$VERSION.tar.bz2" |
sygne@1982 | 12 WEB_SITE="http://software.schmorp.de/pkg/rxvt-unicode.html" |
sygne@1982 | 13 WGET_URL="http://dist.schmorp.de/rxvt-unicode/$TARBALL" |
jozee@4974 | 14 TAGS="terminal" |
sygne@1982 | 15 |
sygne@1982 | 16 # Rules to configure and make the package. |
sygne@1982 | 17 compile_rules() |
sygne@1982 | 18 { |
sygne@1982 | 19 cd $src |
pascal@4263 | 20 busybox patch -p0 -i ../stuff/gcc.u |
sygne@1982 | 21 ./configure --prefix=/usr --infodir=/usr/share/info \ |
sygne@1982 | 22 --disable-perl --with-codesets='eu' \ |
sygne@1982 | 23 --mandir=/usr/share/man $CONFIGURE_ARGS && \ |
sygne@1982 | 24 make && make DESTDIR=$PWD/_pkg install |
sygne@1982 | 25 } |
sygne@1982 | 26 |
sygne@1982 | 27 # Rules to gen a SliTaz package suitable for Tazpkg. |
sygne@1982 | 28 genpkg_rules() |
sygne@1982 | 29 { |
sygne@1982 | 30 mkdir -p $fs/usr |
sygne@1982 | 31 cp -a $_pkg/usr/bin $fs/usr |
sygne@1982 | 32 strip -s $fs/usr/bin/* |
sygne@1982 | 33 |
sygne@1982 | 34 } |
sygne@1982 | 35 |