Update of /cvsroot/wxlua/wxLua/distrib/autopackage
In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv26921/distrib/autopackage
Added Files:
default.apspec.in wxlua.desktop wxlua.xml
Log Message:
moved distribution stuff out of the build directory
--- NEW FILE: wxlua.xml ---
<?xml version="1.0" encoding="UTF-8"?>
<mime-info xmlns="http://www.freedesktop.org/standards/shared-mime-info" xmlns:apkg="http://autopackage.org/xdgmime-extensions">
<mime-type type="application/lua">
<comment>Lua script</comment>
<glob pattern="*.lua" />
<alias type="text/lua" />
<apkg:icon>wxlua.xpm</apkg:icon>
</mime-type>
</mime-info>
--- NEW FILE: default.apspec.in ---
# -*-shell-script-*-
[Meta]
RootName: @wxlua.sourceforge.net/wxlua:$SOFTWAREVERSION
DisplayName: Lua bindings for wxWidgets
ShortName: wxlua
Maintainer: Francesco Montorsi <fr...@us...>
Packager: Francesco Montorsi <fr...@us...>
Summary: wxLua provides Lua bindings to the wxWidgets toolkit
URL: http://wxlua.sourceforge.net/
License: wxWindows license
SoftwareVersion: @PACKAGE_VERSION@
Revision: 1
PackageVersion: 1
AutopackageTarget: 1.2
PackageFileName: $SHORTNAME-$SOFTWAREVERSION-$PACKAGEVERSION.x86.package
Compression: bzip2
[Description]
wxLua is a set of bindings to wxWidgets for the Lua language. With wxLua you can write programs in Lua that use the wxWidgets cross-platform GUI library to develop and deliver your software with the programming ease of an interpreted language like Lua.
[BuildPrepare]
# we must tell apgcc to resolve the -l options with (wx)Lua libraries
# to their absolute path otherwise they will be considered as shared
# and the order of the lib will be messed !!
export APBUILD_RESOLVE_LIBPATH=".*lua.*"
export APBUILD_STATIC="tiff expat"
prepareBuild --disable-shared --disable-debug --disable-customwxbind-install --with-wxdir=/home/frm/work/wxGTK-2.6.3
[BuildUnprepare]
unprepareBuild
[Imports]
rm -rf include lib # do not include headers & libraries !
echo '*' | import
[Prepare]
# only wxGTK required: lua and wxStEdit are statically built in
require @wxwidgets.org/wxgtk 26.0
[Install]
installExe bin/*
installData share/wxlua
installIcon share/pixmaps/wxlua.xpm
installMime share/mime/packages/wxlua.xml
installDesktop "Development" share/applications/wxlua.desktop
[Uninstall]
uninstallFromLog
--- NEW FILE: wxlua.desktop ---
[Desktop Entry]
Name=wxLua Editor
Comment=Editor for Lua script files
Exec=wxluaedit %F
Encoding=UTF-8
Terminal=false
Type=Application
MimeType=application/lua;
Categories=Application;Development;
Icon=wxlua.xpm
X-GNOME-DocPath=
|