[skip-ci] #86 remove lemonpos

This commit is contained in:
Chaoting Liu 2018-10-20 05:31:48 +02:00
parent bc5b5e576c
commit e35029ad94
2 changed files with 0 additions and 67 deletions

View File

@ -1,25 +0,0 @@
# Maintainer: Francesco Marinucci <framari [at] opmbx [dot] org>
pkgname=lemonpos
pkgver=0.9.3
pkgrel=3
pkgdesc="An open source Point of Sale software targeted for micro, small and medium businesses."
url="http://lemonpos.org/"
license=('GPL')
arch=('x86_64')
depends=('kdelibs')
makedepends=('automoc4' 'cmake')
install='lemonpos.install'
source=(http://downloads.sourceforge.net/project/lemonpos/real/$pkgname-$pkgver.tar.bz2)
md5sums=('1dabd68e744707483f30df5c5add9190')
build() {
cd $srcdir/$pkgname/src
cmake .. -DCMAKE_INSTALL_PREFIX=/usr
make
}
package() {
cd $srcdir/$pkgname/src
make DESTDIR=$pkgdir install
}

View File

@ -1,42 +0,0 @@
# This is a default template for a post-install scriptlet. You can
# remove any functions you don't need (and this header).
# arg 1: the new package version
pre_install() {
/bin/true
}
# arg 1: the new package version
post_install() {
echo "Remember that you need to install either mysql or postgresql for this package"
echo "to work. Also make sure to read install the lemonpos database which is at"
echo "/usr/share/apps/lemon/lemon_mysql.sql and use:"
echo "cat lemon_mysql.sql | mysql -u root to set it up"
/bin/true
}
# arg 1: the new package version
# arg 2: the old package version
pre_upgrade() {
/bin/true
}
# arg 1: the new package version
# arg 2: the old package version
post_upgrade() {
/bin/true
}
# arg 1: the old package version
pre_remove() {
/bin/true
}
# arg 1: the old package version
post_remove() {
/bin/true
}
op=$1
shift
$op $*