desktop/gammu/PKGBUILD

33 lines
975 B
Bash
Raw Normal View History

2011-08-17 08:09:16 +08:00
pkgname=gammu
2015-07-14 05:28:38 +08:00
pkgver=1.36.3
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)
2015-07-14 05:28:38 +08:00
sha512sums=('f814ff1fd68f2d46681548f0fc2f955888cd215ac898c2dbe269c4ff6e57bfeb9b80d8ef105c2fed092eb3877b43cfa5e8d02d7c630029ac4798d83c840988ba')
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
}