diff options
Diffstat (limited to 'community/gammu')
-rw-r--r-- | community/gammu/PKGBUILD | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/community/gammu/PKGBUILD b/community/gammu/PKGBUILD index cf50f6cf2..3548d92f3 100644 --- a/community/gammu/PKGBUILD +++ b/community/gammu/PKGBUILD @@ -1,35 +1,35 @@ -# $Id: PKGBUILD 73714 2012-07-14 13:31:58Z schiv $ +# $Id: PKGBUILD 87059 2013-03-26 14:42:55Z schiv $ # Maintainer: Ray Rashif <schiv@archlinux.org> # Contributor: Corrado Primier <bardo@aur.archlinux.org> # Contributor: Aurelien Foret <orelien@chez.com> pkgname=gammu pkgver=1.32.0 -pkgrel=1 +pkgrel=3 pkgdesc="GNU All Mobile Management Utilities" arch=('i686' 'x86_64' 'mips64el') url="http://wammu.eu/" license=('GPL') -depends=('bluez' 'curl' 'libmysqlclient' - 'postgresql-libs' 'python2' 'libusb') -makedepends=('cmake' 'doxygen' 'mysql') +depends=('bluez' 'curl' 'libmariadbclient' + 'postgresql-libs' 'libusb') +makedepends=('cmake' 'doxygen' 'mariadb') optdepends=('dialog: support for the gammu-config script') source=("http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.bz2") md5sums=('8ea16c6b3cc48097a8e62311fe0e25b9') build() { - cd "$srcdir/$pkgname-$pkgver" + cd "$pkgname-$pkgver" # bash completion dir change - sed -e 's,DESTINATION "/etc/bash_completion.d",DESTINATION "/usr/share/bash-completion/completions",' -i contrib/CMakeLists.txt + sed -i 's,DESTINATION "/etc/bash_completion.d",DESTINATION "/usr/share/bash-completion/completions",' contrib/CMakeLists.txt - cmake . -DCMAKE_INSTALL_PREFIX="/usr" + cmake . -DCMAKE_INSTALL_PREFIX="/usr" -DLIB_SUFFIX="" make } package() { - cd "$srcdir/$pkgname-$pkgver" + cd "$pkgname-$pkgver" make DESTDIR="$pkgdir" install } |