mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 18:42:12 +08:00
30 lines
934 B
Bash
30 lines
934 B
Bash
#
|
|
# Chakra Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
|
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
|
|
|
# include global config
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
pkgname=lemonpos
|
|
pkgver=0.9.3
|
|
pkgrel=1
|
|
pkgdesc="An open source Point of Sale software targeted for micro, small and medium businesses."
|
|
url="http://lemonpos.org/"
|
|
license=('GPL')
|
|
arch=('i686' 'x86_64')
|
|
depends=('kdelibs')
|
|
makedepends=('automoc4' 'cmake')
|
|
source=(http://downloads.sourceforge.net/project/lemonpos/real/${pkgname}-${pkgver}.tar.bz2)
|
|
md5sums=('1dabd68e744707483f30df5c5add9190')
|
|
install=('lemonpos.install')
|
|
build() {
|
|
cd ${srcdir}/${pkgname}/src
|
|
cmake .. -DCMAKE_INSTALL_PREFIX=/usr
|
|
msg "Starting make..."
|
|
make || return 1
|
|
msg "Make successful, installIing..."
|
|
make DESTDIR=${pkgdir} install || return 1
|
|
}
|