mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 10:32:13 +08:00
31 lines
767 B
Bash
31 lines
767 B
Bash
# Maintainer: Neophytos Kolokotronis <tetris4 AT gmail DOT com
|
|
# contributor: (abveritas[at]chakra-project[dog]org>
|
|
|
|
pkgname=gammu
|
|
pkgver=1.33.0
|
|
pkgrel=1
|
|
pkgdesc="GNU All Mobile Management Utilities"
|
|
arch=('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')
|
|
categories=('utils')
|
|
source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.bz2)
|
|
md5sums=('3f46afcc16829175d2d9060ac15813e8')
|
|
|
|
build() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
|
|
cmake . -DCMAKE_INSTALL_PREFIX="/usr"
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
|
|
make DESTDIR="$pkgdir" install
|
|
}
|