wok rev 24562
updated fpm2 (0.79 -> 0.90)
author | Hans-G?nter Theisgen |
---|---|
date | Fri Feb 25 16:44:38 2022 +0100 (2022-02-25) |
parents | cdc74335c27a |
children | 257d3372786a |
files | fpm2-lang/receipt fpm2/description.txt fpm2/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/fpm2-lang/receipt Fri Feb 25 16:44:38 2022 +0100 1.3 @@ -0,0 +1,16 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="fpm2-lang" 1.7 +VERSION="0.90" 1.8 +CATEGORY="utilities" 1.9 +SHORT_DESC="Password manager - localised messages." 1.10 +MAINTAINER="maintainer@slitaz.org" 1.11 +LICENSE="GPL2" 1.12 +WEB_SITE="https://als.regnet.cz/fpm2/" 1.13 + 1.14 +WANTED="fpm2" 1.15 + 1.16 +genpkg_rules() 1.17 +{ 1.18 + cook_copy_folders locale 1.19 +}
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/fpm2/description.txt Fri Feb 25 16:44:38 2022 +0100 2.3 @@ -0,0 +1,2 @@ 2.4 +FPM2 is a GTK3 port from Figaro's Password Manager originally 2.5 +developed by John Conneely, with some new enhancements.
3.1 --- a/fpm2/receipt Fri Feb 25 16:30:10 2022 +0100 3.2 +++ b/fpm2/receipt Fri Feb 25 16:44:38 2022 +0100 3.3 @@ -1,20 +1,21 @@ 3.4 # SliTaz package receipt. 3.5 3.6 PACKAGE="fpm2" 3.7 -VERSION="0.79" 3.8 +VERSION="0.90" 3.9 CATEGORY="utilities" 3.10 SHORT_DESC="Password manager." 3.11 MAINTAINER="pankso@slitaz.org" 3.12 LICENSE="GPL2" 3.13 WEB_SITE="https://als.regnet.cz/fpm2/" 3.14 3.15 -TARBALL="$PACKAGE-$VERSION.tar.bz2" 3.16 +TARBALL="$PACKAGE-$VERSION.tar.xz" 3.17 WGET_URL="${WEB_SITE}download/$TARBALL" 3.18 3.19 -DEPENDS="expat gtk+ libxml2 xorg-libX11 xorg-libXau xorg-libXcomposite \ 3.20 -xorg-libXcursor xorg-libXdmcp xorg-libXext xorg-libXfixes xorg-libXinerama \ 3.21 -xorg-libXrandr xorg-libXrender xorg-libXdamage" 3.22 -BUILD_DEPENDS="gtk+-dev libxml2-dev" 3.23 +SUGGESTED="fpm2-lang" 3.24 +DEPENDS="expat gcc83-lib-base gtk+3 libxml2 nettle-dev xorg-libX11 xorg-libXau 3.25 + xorg-libXcomposite xorg-libXcursor xorg-libXdamage xorg-libXdmcp 3.26 + xorg-libXext xorg-libXfixes xorg-libXinerama xorg-libXrandr xorg-libXrender" 3.27 +BUILD_DEPENDS="bash gcc83 glib-dev gtk+3-dev libxml2-dev nettle-dev" 3.28 3.29 # What is the latest version available today? 3.30 current_version() 3.31 @@ -26,10 +27,14 @@ 3.32 # Rules to configure and make the package. 3.33 compile_rules() 3.34 { 3.35 - ./configure \ 3.36 - --prefix=/usr \ 3.37 + # Need bash for configure: 3.38 + sed -i '1s|sh|bash|' configure 3.39 + 3.40 + ./configure \ 3.41 + CC=gcc-83 \ 3.42 + --prefix=/usr \ 3.43 --mandir=/usr/share/man && 3.44 - make -j 1 && 3.45 + make && 3.46 make DESTDIR=$DESTDIR install 3.47 } 3.48 3.49 @@ -37,15 +42,17 @@ 3.50 genpkg_rules() 3.51 { 3.52 mkdir -p $fs/usr/share/pixmaps 3.53 - cp -a $install/usr/bin $fs/usr 3.54 + 3.55 + cp -a $install/usr/bin $fs/usr 3.56 cp -a $install/usr/share/pixmaps/fpm2/logo.png \ 3.57 - $fs/usr/share/pixmaps/fpm2.png 3.58 + $fs/usr/share/pixmaps/fpm2.png 3.59 3.60 # locales 3.61 - mkdir -p $fs/usr/share/locale 3.62 - LOCALES="cs de es fr it ru" 3.63 - for locale in $LOCALES 3.64 - do 3.65 - cp -a $install/usr/share/locale/$locale $fs/usr/share/locale 3.66 - done 3.67 + # moved to package fpm2-lang 3.68 +# mkdir -p $fs/usr/share/locale 3.69 +# LOCALES="cs de es fr it ru" 3.70 +# for locale in $LOCALES 3.71 +# do 3.72 +# cp -a $install/usr/share/locale/$locale $fs/usr/share/locale 3.73 +# done 3.74 }