wok diff fslint/receipt @ rev 20634
linld: fix open()
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Tue Jan 08 17:51:51 2019 +0100 (2019-01-08) |
parents | |
children | ad8b9ff412d2 |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/fslint/receipt Tue Jan 08 17:51:51 2019 +0100 1.3 @@ -0,0 +1,39 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="fslint" 1.7 +VERSION="2.46" 1.8 +CATEGORY="base-system" 1.9 +SHORT_DESC="File System 'lint' discovery and cleaning utility" 1.10 +MAINTAINER="pascal.bellard@slitaz.org" 1.11 +LICENSE="GPL2" 1.12 +TARBALL="$PACKAGE-$VERSION.tar.xz" 1.13 +WEB_SITE="http://www.pixelbeat.org/fslint/" 1.14 +WGET_URL="$WEB_SITE/$TARBALL" 1.15 + 1.16 +DEPENDS="gtk+ python libglade pygtk findutils cpio" 1.17 +BUILD_DEPENDS="gettext" 1.18 + 1.19 +# Rules to configure and make the package. 1.20 +compile_rules() 1.21 +{ 1.22 + make -C po DESTDIR=$DESTDIR LOCALEDIR=/usr/share/locale install 1.23 +} 1.24 + 1.25 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.26 +genpkg_rules() 1.27 +{ 1.28 + mkdir -p $fs/usr/share/pixmaps $fs/usr/share/applications 1.29 + mkdir -p $fs/usr/bin $fs/usr/share/fslint 1.30 + mkdir -p $install/usr/share/pixmaps 1.31 + cp -a $src/doc $src/man $install/usr/share/ 1.32 + cp -a $src/fslint.desktop $fs/usr/share/applications 1.33 + cp -a $src/fslint-gui $fs/usr/bin 1.34 + cp -a $src/fslint.glade $fs/usr/bin 1.35 + cp -a $src/fslint/fstool $fs/usr/share/fslint/ 1.36 + cp -a $src/fslint/supprt $fs/usr/share/fslint/ 1.37 + cp -a $src/fslint/find* $fs/usr/share/fslint/ 1.38 + cp -a $src/fslint/fslint $fs/usr/share/fslint/ 1.39 + cp -a $src/fslint/zipdir $fs/usr/share/fslint/ 1.40 + cp -a $src/fslint_icon.png $fs/usr/share/fslint/ 1.41 + ln -s ../fslint/fslint_icon.png $fs/usr/share/pixmaps 1.42 +}