mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 18:42:12 +08:00
28 lines
659 B
Bash
28 lines
659 B
Bash
pkgname=gammu
|
|
pkgver=1.30.0
|
|
pkgrel=1
|
|
pkgdesc="GNU All Mobile Management Utilities"
|
|
arch=('i686' 'x86_64')
|
|
url="http://wammu.eu/"
|
|
license=('GPL')
|
|
depends=('bluez' 'curl' 'libmysqlclient'
|
|
'postgresql-libs' 'python2' 'libusb' 'gnutls')
|
|
makedepends=('cmake' 'doxygen' 'mysql')
|
|
optdepends=('dialog: support for the gammu-config script')
|
|
options=('!makeflags')
|
|
source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.bz2)
|
|
md5sums=('5bb061f1299e7ae8d38ecac1b8b11465')
|
|
|
|
build() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
|
|
cmake . -DCMAKE_INSTALL_PREFIX="/usr"
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
|
|
make DESTDIR="$pkgdir" install
|
|
}
|