mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-25 02:52:13 +08:00
33 lines
911 B
Bash
33 lines
911 B
Bash
pkgname=gammu
|
|
pkgver=1.38.2
|
|
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)
|
|
sha256sums=('3e478dede2b819859e6d7265c3a0cbf5d9ffa4ca450a51c2beacf92b6434c2b7')
|
|
|
|
build() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
|
|
# bash completion dir change
|
|
sed -i 's,DESTINATION "/etc/bash_completion.d",DESTINATION "/usr/share/bash-completion/completions",' contrib/CMakeLists.txt
|
|
cmake . -DCMAKE_INSTALL_PREFIX="/usr"
|
|
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
|
|
make DESTDIR="$pkgdir" install
|
|
mv $pkgdir/usr/lib64/* $pkgdir/usr/lib
|
|
rm -d $pkgdir/usr/lib64
|
|
}
|