desktop/gammu/PKGBUILD

33 lines
911 B
Bash
Raw Normal View History

2011-08-17 08:09:16 +08:00
pkgname=gammu
2016-12-16 20:09:39 +08:00
pkgver=1.38.0
2011-08-17 08:09:16 +08:00
pkgrel=1
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)
2016-12-16 20:09:39 +08:00
sha256sums=('b69c996b3794386e2df7b85ee3bb60377bcf028b6f265e56a44649f7af5c2b50')
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
}