updated on Thu Jan 12 08:01:00 UTC 2012
[aur-mirror.git] / qtweetlib / PKGBUILD
blob0f4f8a15fdab7058fea0c849f5029bfcf2e3a156
1 # Maintainer: Kuba Serafinowski <zizzfizzix(at)gmail(dot)com>
3 ##############################################################
4 #### The section below can be adjusted to suit your needs ####
5 ##############################################################
7 # What type of build do you want?
8 # See http://techbase.kde.org/Development/CMake/Addons_for_KDE#Buildtypes to check what is supported.
9 # Default is RelWithDebInfo to help with debugging.
11 _buildtype="RelWithDebInfo"
13 ##############################################################
15 pkgname=qtweetlib
16 pkgver=0.3
17 pkgrel=2
18 _rev=f0442f6
19 pkgdesc="C++ Qt based Twitter library"
20 arch=('i686' 'x86_64')
21 url="https://github.com/minimoog/QTweetLib"
22 license=('GPL2')
23 depends=('qjson')
24 makedepends=('cmake>=2.8')
25 provides=('qtweetlib')
26 conflicts=('qtweetlib-git')
27 options=(!strip)
28 source=(https://github.com/downloads/minimoog/QTweetLib/QTweetLib-0.3.0.tar.gz)
29 md5sums=('a37055e7c081049294efb42126933cef')
31 # Clean options array to strip pkg if release buildtype is chosen
32 if [[ ${_buildtype} == "Release" ]] || [[ ${_buildtype} == "release" ]]; then
33   options=()
36 build(){
37   msg "Starting build..."
39   rm -rf ${srcdir}/${pkgname}-build
40   mv ${srcdir}/minimoog-QTweetLib-${_rev} ${srcdir}/${pkgname}-build
41   cd ${srcdir}/${pkgname}-build
43   cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=${_buildtype}
44   make
47 package() {
48   cd ${srcdir}/${pkgname}-build
49   make DESTDIR=${pkgdir} install