updated on Mon Jan 16 12:07:49 UTC 2012
[aur-mirror.git] / libqxt-tip / PKGBUILD
blob2b21c8c1ff39f294f6fa6f906c6f3bf9ce3d646c
1 # This is an example PKGBUILD file. Use this as a start to creating your own,
2 # and remove these comments. For more information, see 'man PKGBUILD'.
3 # NOTE: Please fill out the license field for your package! If it is unknown,
4 # then please put 'unknown'.
6 # Maintainer: Your Name <youremail@domain.com>
7 pkgname=libqxt-tip
8 pkgver=0.6.99
9 pkgrel=1
10 pkgdesc="provides a suite of cross-platform utility classes to add functionality not readily available in the Qt toolkit (development version)"
11 arch=('i686' , 'x86_64')
12 url="http://www.libqxt.org/"
13 license=('GPL')
14 groups=()
15 depends=('qt' 'openssl' 'db')
16 makedepends=('qt')
17 optdepends=()
18 provides=('libqxt')
19 conflicts=('libqxt')
20 replaces=('libqxt')
21 backup=()
22 options=()
23 install=
24 changelog=
25 source=(http://dev.libqxt.org/libqxt/get/tip.tar.gz)
26 noextract=()
27 md5sums=('d47056d63f4e7fe90e874ba8aa57e629') #generate with 'makepkg -g'
29 build() {
30   DIR=$srcdir/libqxt*
31   for i in $DIR; do
32     DIR=$i
33   done
34   cd "$DIR"
36   ./configure -prefix /usr
37   make
40 package() {
41   DIR=$srcdir/libqxt*
42   for i in $DIR; do
43      DIR=$i
44   done
45   cd "$DIR"
47   make INSTALL_ROOT="$pkgdir/" install
50 # vim:set ts=2 sw=2 et: