commit d4fd25eff32ed3dc513c9e4ead6201d68af4752a Author: XavierCLL Date: Sat Jun 13 00:28:47 2015 -0500 Initial import diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 0000000..1bfa3b2 --- /dev/null +++ b/.SRCINFO @@ -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 + diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 0000000..abdb1da --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,26 @@ +# Maintainer: (epsilom) Xavier Corredor +# Contributor: Roberto Alsina +# Contributor: Tim Besard + +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 +}