desktop/gammu/PKGBUILD

33 lines
911 B
Bash
Raw Normal View History

2011-08-17 08:09:16 +08:00
pkgname=gammu
2017-03-31 04:49:34 +08:00
pkgver=1.38.2
pkgrel=1
2011-08-17 08:09:16 +08:00
pkgdesc="GNU All Mobile Management Utilities"
2012-11-28 20:43:54 +08:00
arch=('x86_64')
2011-08-17 08:09:16 +08:00
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')
2011-08-17 08:09:16 +08:00
source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.bz2)
2017-03-31 04:49:34 +08:00
sha256sums=('3e478dede2b819859e6d7265c3a0cbf5d9ffa4ca450a51c2beacf92b6434c2b7')
2011-08-17 08:09:16 +08:00
build() {
cd "$srcdir/$pkgname-$pkgver"
2015-06-23 02:45:51 +08:00
# bash completion dir change
sed -i 's,DESTINATION "/etc/bash_completion.d",DESTINATION "/usr/share/bash-completion/completions",' contrib/CMakeLists.txt
2011-08-17 08:09:16 +08:00
cmake . -DCMAKE_INSTALL_PREFIX="/usr"
2015-06-23 02:45:51 +08:00
2011-08-17 08:09:16 +08:00
make
}
package() {
cd "$srcdir/$pkgname-$pkgver"
make DESTDIR="$pkgdir" install
2015-06-23 02:45:51 +08:00
mv $pkgdir/usr/lib64/* $pkgdir/usr/lib
rm -d $pkgdir/usr/lib64
2011-08-17 08:09:16 +08:00
}