updated on Fri Jan 20 04:00:45 UTC 2012
[aur-mirror.git] / qreadbook / PKGBUILD
blobdb9ca0de58d22c2fd4ea7ccc2d7cb75ecce3f7ac
1 # Contributor: Tocer Deng <tocer.deng@gmail.com>
2 pkgname=qreadbook
3 pkgver=0.1.5.1
4 pkgrel=1
5 pkgdesc="A small and simple book reader programmed in C++ using the QT toolkit."
6 arch=('i686' 'x86_64')
7 url="http://code.google.com/p/qreadbook/"
8 license=('GPL3')
9 depends=('qt')
10 makedepends=()
11 source=("http://qreadbook.googlecode.com/files/${pkgname}v$pkgver.tar.gz")
12 md5sums=('523599acd33bce0fcf7c30b7992f5cc5')
14 build() {
15   cd "$srcdir/$pkgname"
17   qmake -o Makefile qreadbook.pro
18   make || return 1
19   install -Dm 0755 qreadbook $pkgdir/usr/bin/qreadbook
22 # vim:set ts=2 sw=2 et: