office/vym: Allow VERSION override, i486=>i586, .desktop.
Signed-off-by: B. Watson <yalhcru@gmail.com> Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
This commit is contained in:
parent
86cdd2dd16
commit
64abfd5bc9
|
@ -23,13 +23,13 @@
|
|||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
PRGNAM=vym
|
||||
VERSION=2.2.4
|
||||
VERSION=${VERSION:-2.2.4}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
if [ -z "$ARCH" ]; then
|
||||
case "$( uname -m )" in
|
||||
i?86) ARCH=i486 ;;
|
||||
i?86) ARCH=i586 ;;
|
||||
arm*) ARCH=arm ;;
|
||||
*) ARCH=$( uname -m ) ;;
|
||||
esac
|
||||
|
@ -40,8 +40,8 @@ TMP=${TMP:-/tmp/SBo}
|
|||
PKG=$TMP/package-$PRGNAM
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
|
||||
if [ "$ARCH" = "i486" ]; then
|
||||
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
|
||||
if [ "$ARCH" = "i586" ]; then
|
||||
SLKCFLAGS="-O2 -march=i586 -mtune=i686"
|
||||
LIBDIRSUFFIX=""
|
||||
elif [ "$ARCH" = "i686" ]; then
|
||||
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
|
||||
|
|
|
@ -1,10 +1,8 @@
|
|||
[Desktop Entry]
|
||||
Type=Application
|
||||
Encoding=UTF-8
|
||||
Exec=vym
|
||||
Name=VYM - View Your Mind
|
||||
Name[de]=VYM - View Your Mind
|
||||
GenericName=Planning and Brainstorming Tool
|
||||
Icon=vym
|
||||
MimeType=application/x-vym;
|
||||
Categories=Application;Qt;Office;
|
||||
Categories=Qt;Office;
|
||||
|
|
|
@ -1,7 +1,5 @@
|
|||
[Desktop Entry]
|
||||
Encoding=UTF-8
|
||||
Comment=VYM (View Your Mind) File
|
||||
Name=VYM (View Your Mind) File
|
||||
Type=MimeType
|
||||
MimeType=application/x-vym
|
||||
Icon=vym
|
||||
Patterns=*.vym;*.vyp;*.vys;*.VYM;*.VYP;*.VYS;
|
||||
|
|
Loading…
Reference in New Issue