office/homebank: Initial import
This commit is contained in:
parent
344e3c8c9a
commit
84e7fc6dcb
|
@ -0,0 +1,15 @@
|
|||
HomeBank is the free software you have always wanted to manage your personal
|
||||
accounts at home. The main concept is to be light, simple and very easy to
|
||||
use. It brings you many features that allows you to analyze your finances in
|
||||
a detailed way instantly and dynamically with powerfull report tools based on
|
||||
filtering and graphical charts.
|
||||
|
||||
Furthermore HomeBank benefits now for more than 10 years of users experiences
|
||||
and feedbacks as its development started in 1995 on Amiga computers. It is now
|
||||
available on Amiga, GNU/Linux, and will probably be soon available for
|
||||
Microsoft Windows and MacOS X systems, as GTK+ exists on it.
|
||||
|
||||
Really, if you are looking for an easy way to do your home accounts, then
|
||||
HomeBank should be the software you choose. Just take a little time to try it
|
||||
out now, and you won't regret doing so...
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
if [ -x usr/bin/update-desktop-database ]; then
|
||||
usr/bin/update-desktop-database &> /dev/null
|
||||
fi
|
|
@ -0,0 +1,52 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for homebank
|
||||
# Written by Erik Hanson erik@slackbuilds.org
|
||||
|
||||
PRGNAM=homebank
|
||||
VERSION=3.2.1
|
||||
ARCH=${ARCH:-i486}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
CWD=`pwd`
|
||||
TMP=${TMP:-/tmp/SBo}
|
||||
PKG=$TMP/package-$PRGNAM
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
|
||||
if [ "$ARCH" = "i486" ]; then
|
||||
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
|
||||
elif [ "$ARCH" = "i686" ]; then
|
||||
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
|
||||
fi
|
||||
|
||||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG $OUTPUT
|
||||
cd $TMP
|
||||
rm -rf $PRGNAM-$VERSION
|
||||
tar xvf $CWD/$PRGNAM-$VERSION.tar.gz || exit 1
|
||||
cd $PRGNAM-$VERSION
|
||||
chown -R root:root .
|
||||
chmod -R u+w,go+r-w,a-s .
|
||||
|
||||
CFLAGS="$SLKCFLAGS" \
|
||||
./configure \
|
||||
--prefix=/usr \
|
||||
--sysconfdir=/etc \
|
||||
--localstatedir=/var \
|
||||
|| exit 1
|
||||
|
||||
make || exit 1
|
||||
make install DESTDIR=$PKG || exit 1
|
||||
|
||||
find $PKG | xargs file | egrep "ELF.*executable" | cut -f1 -d: | xargs strip --strip-unneeded 2> /dev/null
|
||||
|
||||
mkdir -p $PKG/usr/share/applications $PKG/usr/doc/$PRGNAM-$VERSION $PKG/install
|
||||
cp -a AUTHORS COPYING ChangeLog INSTALL NEWS README $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cat $CWD/$PRGNAM.desktop > $PKG/usr/share/applications/$PRGNAM.desktop
|
||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||
cat $CWD/slack-desc > $PKG/install/slack-desc
|
||||
cat $CWD/doinst.sh > $PKG/install/doinst.sh
|
||||
|
||||
cd $PKG
|
||||
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
[Desktop Entry]
|
||||
Encoding=UTF-8
|
||||
Name=HomeBank
|
||||
GenericName=Personal Accounting
|
||||
Comment=HomeBank, manage personal finances
|
||||
Exec=homebank
|
||||
Icon=/usr/share/homebank/images/homebank.svg
|
||||
Terminal=false
|
||||
Type=Application
|
||||
Categories=Application;Office;Finances
|
||||
StartupNotify=true
|
|
@ -0,0 +1,8 @@
|
|||
PRGNAM="homebank"
|
||||
VERSION="3.2.1"
|
||||
HOMEPAGE="http://homebank.free.fr/"
|
||||
DOWNLOAD="http://homebank.free.fr/public/homebank-3.2.1.tar.gz"
|
||||
MD5SUM="825adf3641aefe89e64fb055cf8f6a87"
|
||||
MAINTAINER="Erik Hanson"
|
||||
EMAIL="erik@slackbuilds.org"
|
||||
APPROVED="BP{k}"
|
|
@ -0,0 +1,11 @@
|
|||
homebank: HomeBank - Free easy personal accounting for all!
|
||||
homebank:
|
||||
homebank: HomeBank is the free software you have always wanted to manage your
|
||||
homebank: personal accounts at home. The main concept is to be light, simple
|
||||
homebank: and very easy to use. It brings you many features that allows you
|
||||
homebank: to analyze your finances in a detailed way instantly and
|
||||
homebank: dynamically with powerfull report tools based on filtering and
|
||||
homebank: graphical charts.
|
||||
homebank:
|
||||
homebank: http://homebank.free.fr/
|
||||
homebank:
|
Loading…
Reference in New Issue