Initial import

This commit is contained in:
XavierCLL 2015-06-13 00:28:47 -05:00
commit d4fd25eff3
2 changed files with 43 additions and 0 deletions

17
.SRCINFO Normal file
View File

@ -0,0 +1,17 @@
pkgbase = libqxt
pkgdesc = provides a suite of cross-platform utility classes to add functionality not readily available in the Qt toolkit
pkgver = 0.6.2
pkgrel = 4
url = http://www.libqxt.org
arch = i686
arch = x86_64
license = CPL
depends = qt4
depends = openssl
depends = db
optdepends = avahi
source = http://bitbucket.org/libqxt/libqxt/get/v0.6.2.tar.bz2
md5sums = a859a1757dc0aaf010df1a0783e3e001
pkgname = libqxt

26
PKGBUILD Normal file
View File

@ -0,0 +1,26 @@
# Maintainer: (epsilom) Xavier Corredor <xavier.corredor.llano (a) gmail.com>
# Contributor: Roberto Alsina <ralsina@kde.org>
# Contributor: Tim Besard <tim.besard@gmail.com>
pkgname=libqxt
pkgver=0.6.2
pkgrel=4
pkgdesc="provides a suite of cross-platform utility classes to add functionality not readily available in the Qt toolkit"
arch=('i686' 'x86_64')
url="http://www.libqxt.org"
license=('CPL')
depends=('qt4' 'openssl' 'db')
optdepends=('avahi')
source=(http://bitbucket.org/libqxt/libqxt/get/v$pkgver.tar.bz2)
md5sums=('a859a1757dc0aaf010df1a0783e3e001')
build() {
cd $srcdir/$pkgname-*
./configure -prefix /usr -qmake-bin "/usr/bin/qmake-qt4"
make
}
package() {
cd $srcdir/$pkgname-*
make INSTALL_ROOT=$pkgdir install
}