Added KDroid 0.6.

This commit is contained in:
Adrián Chaves Fernández (Gallaecio) 2011-09-02 01:05:13 +00:00
parent d0d4d85767
commit 475576dfe8

34
kdroid/PKGBUILD Normal file
View File

@ -0,0 +1,34 @@
#
# Games Packages for Chakra, part of chakra-project.org
#
# Maintainer: Adrián Chaves Fernández (Gallaecio) <adriyetichaves@gmail.com>
pkgname=kdroid
_pkgname=KDroid
_pkgname2=$pkgname-desktop
pkgver=0.6
pkgrel=1
pkgdesc="An application to view your contacts and text messages on your computer over a WiFi connection."
arch=('i686' 'x86_64')
url="http://kde-apps.org/content/show.php?content=141506"
screenshot="http://kde-apps.org/CONTENT/content-pre1/141506-1.png"
license=('GPL3')
depends=('kdelibs')
source=(http://dl.dropbox.com/u/14425934/$_pkgname/$_pkgname2-$pkgver.tar.gz)
md5sums=('270b45676cf145fb6a5c20227c1058b3')
build() {
cd $srcdir/$_pkgname2
[[ -d build ]] && rm -r build
mkdir build && cd build
cmake \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
..
make
}
package() {
cd $srcdir/$_pkgname2/build
make DESTDIR=$pkgdir install
}