1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
|
# -*-shell-script-*-
[Meta]
RootName: @libwpd.sourceforge.net/libwpd:@VERSION@
DisplayName: A library for importing WordPerfect (tm) documents
ShortName: libwpd
Maintainer: libwpd Team - http://libwpd.sourceforge.net/authors_licensing.html
Packager: Robert Staudinger <robsta@stereolyzer.net>
Summary: A library for importing WordPerfect (tm) documents.
SoftwareVersion: @VERSION@
AutopackageTarget: 1.0
PackageVersion: 1
# Only uncomment InterfaceVersion if your package exposes interfaces to other software,
# for instance if it includes DSOs or python/perl modules. See the developer guide for more info,
# or ask on autopackage-dev if you don't understand interface versioning in autopackage.
InterfaceVersion: @LT_CURRENT@.@LT_AGE@
[Description]
A library for importing WordPerfect (tm) documents.
[BuildPrepare]
# doesn't need binreloc
prepareBuild --prefix=/break/if/binreloc/breaks --disable-debug
[BuildUnprepare]
unprepareBuild
[Imports]
echo '*' | import
[Prepare]
require @gnu.org/libstdc++ 3
[Install]
installExe ./bin/*
installLib ./lib/*.so.*.*.*
DATADEST="share/doc/libwpd-@VERSION@"
if [ ! -e "$PREFIX/$DATADEST" ] ; then
mkdir -p "$PREFIX/$DATADEST"
fi
copyFiles "./$DATADEST/COPYING" "$PREFIX/$DATADEST/"
copyFiles "./$DATADEST/CREDITS" "$PREFIX/$DATADEST/"
copyFiles "./$DATADEST/README" "$PREFIX/$DATADEST/"
[Uninstall]
uninstallFromLog
|