mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-03 12:57:15 +08:00
29 lines
698 B
Bash
29 lines
698 B
Bash
# maintainer (abveritas[at]chakra-project[dog]org>
|
|
|
|
pkgname=gammu
|
|
pkgver=1.32.0
|
|
pkgrel=2
|
|
pkgdesc="GNU All Mobile Management Utilities"
|
|
arch=('x86_64')
|
|
url="http://wammu.eu/"
|
|
license=('GPL')
|
|
depends=('bluez' 'curl' 'libmariadbclient' 'postgresql-libs' 'python2' 'libusb' 'gnutls')
|
|
makedepends=('cmake' 'doxygen' 'mariadb')
|
|
optdepends=('dialog: support for the gammu-config script')
|
|
categories=('utils')
|
|
source=("http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.xz")
|
|
md5sums=('a9de0904ab08093a1514d876c7bec13a')
|
|
|
|
build() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
|
|
cmake . -DCMAKE_INSTALL_PREFIX="/usr"
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
|
|
make DESTDIR="$pkgdir" install
|
|
}
|