mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
26 lines
642 B
Bash
26 lines
642 B
Bash
# 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
|
|
}
|