wok-6.x annotate xlockmore/receipt @ rev 21778
linld: fix strdup (again)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Thu Jul 11 14:55:02 2019 +0200 (2019-07-11) |
parents | fcd3d43eadad |
children | 535c806240cc |
rev | line source |
---|---|
rocky@3627 | 1 # SliTaz package receipt. |
rocky@3627 | 2 |
rocky@3627 | 3 PACKAGE="xlockmore" |
pascal@20859 | 4 VERSION="5.56" |
rocky@3627 | 5 CATEGORY="utilities" |
rocky@3627 | 6 SHORT_DESC="X Window System Lock Screen." |
rocky@3627 | 7 MAINTAINER="rocky@slitaz.org" |
pascal@15601 | 8 LICENSE="BSD" |
pascal@20859 | 9 TARBALL="$PACKAGE-$VERSION.tar.xz" |
pascal@20859 | 10 WEB_SITE="http://sillycycle.com/xlockmore.html" |
pascal@20859 | 11 WGET_URL="http://sillycycle.com/xlock/$TARBALL" |
rocky@3627 | 12 |
pascal@15601 | 13 DEPENDS="xorg-libX11 freetype freetype1" |
pascal@19724 | 14 BUILD_DEPENDS="xorg-libXdmcp-dev xorg-libXpm-dev xorg-libX11-dev \ |
pascal@19724 | 15 xorg-libXt-dev openmotif-dev" |
pascal@15601 | 16 |
rocky@3627 | 17 # Rules to configure and make the package. |
rocky@3627 | 18 compile_rules() |
rocky@3627 | 19 { |
pascal@20860 | 20 sed -i 's|__GNUC_MINOR__ >= 4|__GNUC_MINOR__ >= 7|' modes/strange.c |
rocky@3627 | 21 ./configure --prefix=/usr \ |
rocky@3627 | 22 --infodir=/usr/share/info \ |
rocky@3627 | 23 --mandir=/usr/share/man \ |
rocky@3627 | 24 $CONFIGURE_ARGS && |
rocky@3627 | 25 make && |
slaxemulator@11319 | 26 mkdir -p $DESTDIR/usr/share/X11/app-defaults/ \ |
slaxemulator@11319 | 27 $DESTDIR/usr/bin |
slaxemulator@11319 | 28 cp -f xlock/xlock $DESTDIR/usr/bin/ |
slaxemulator@11319 | 29 cp -f xlock/XLock.ad $DESTDIR/usr/share/X11/app-defaults/XLock |
rocky@3627 | 30 } |
rocky@3627 | 31 |
rocky@3627 | 32 # Rules to gen a SliTaz package suitable for Tazpkg. |
rocky@3627 | 33 genpkg_rules() |
rocky@3627 | 34 { |
rocky@3627 | 35 mkdir -p $fs |
pascal@15601 | 36 cp -a $install/usr $fs |
rocky@3627 | 37 } |
rocky@3627 | 38 |
rocky@3627 | 39 post_install() |
rocky@3627 | 40 { |
pascal@18730 | 41 chmod u+s "$1/usr/bin/xlock" |
rocky@3627 | 42 } |