wok view urxvt/receipt @ rev 23848

inkscape: update build_depends
author Richard Dunbar <mojo@slitaz.org>
date Sun Jun 14 23:18:03 2020 -0400 (2020-06-14)
parents 15f961c96e62
children 934055de50e2
line source
1 # SliTaz package receipt.
3 PACKAGE="urxvt"
4 VERSION="9.22"
5 CATEGORY="utilities"
6 TAGS="terminal"
7 SHORT_DESC="Terminal with unicode support."
8 MAINTAINER="sygne@ombres.eu"
9 LICENSE="GPL2"
10 WEB_SITE="http://software.schmorp.de/pkg/rxvt-unicode.html"
12 SOURCE="rxvt-unicode"
13 TARBALL="$SOURCE-$VERSION.tar.bz2"
14 WGET_URL="http://dist.schmorp.de/$SOURCE/$TARBALL"
16 DEPENDS="expat fontconfig freetype gcc-lib-base xorg-libX11 xorg-libXft \
17 xorg-xmessage zlib"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 cd src
23 patch --input=$stuff/patches/command.C-9.22
24 patch --input=$stuff/patches/misc.C-9.22
25 cd ..
27 ./configure \
28 --prefix=/usr \
29 --infodir=/usr/share/info \
30 --disable-perl \
31 --with-codesets='eu' \
32 --mandir=/usr/share/man \
33 $CONFIGURE_ARGS &&
34 make &&
35 make DESTDIR=$DESTDIR install
36 }
38 # Rules to gen a SliTaz package suitable for Tazpkg.
39 genpkg_rules()
40 {
41 mkdir -p $fs/usr
42 cp -a $install/usr/bin $fs/usr
43 }