mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
21 lines
705 B
Bash
21 lines
705 B
Bash
# $Id: PKGBUILD 44324 2009-07-01 15:17:23Z allan $
|
|
# Maintainer : damir <damir@archlinux.org>
|
|
|
|
pkgname=kmobiletools
|
|
pkgver=0.5.0beta3
|
|
_origver=0.5.0-beta3
|
|
pkgrel=4
|
|
pkgdesc="Make you mobile phone communicate with your PC"
|
|
arch=('i686' 'x86_64')
|
|
license=('GPL2')
|
|
url="http://www.kmobiletools.org"
|
|
depends=('qt3>=3.3.8-12' 'kdelibs3>=3.5.10-4' 'obexftp>=0.23-2' 'libusb')
|
|
source=(http://download.berlios.de/kmobiletools/kmobiletools-${_origver}.tar.bz2)
|
|
md5sums=('2880ca9b21ba4f70088be64b6ef6a39b')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${_origver}"
|
|
./configure --prefix=/opt/kde --enable-final --disable-debug --without-arts || return 1
|
|
make || return 1
|
|
make DESTDIR="${pkgdir}" install || return 1
|
|
}
|