diff options
Diffstat (limited to 'community/kbibtex/PKGBUILD')
-rw-r--r-- | community/kbibtex/PKGBUILD | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/community/kbibtex/PKGBUILD b/community/kbibtex/PKGBUILD index 9bac69f64..c92ab49f8 100644 --- a/community/kbibtex/PKGBUILD +++ b/community/kbibtex/PKGBUILD @@ -1,26 +1,27 @@ -# $Id: PKGBUILD 87529 2013-04-02 15:44:34Z schiv $ +# $Id: PKGBUILD 103296 2014-01-02 21:08:34Z schiv $ # Maintainer: Ray Rashif <schiv@archlinux.org> # Contributor: Antonio Rojas <nqn1976 @ gmail.com> # Contributor: cmorlok <christianmorlok@web.de> pkgname=kbibtex -pkgver=0.4.1 -_branch=0.4 -pkgrel=2 +pkgver=0.5 +_branch=0.5 +pkgrel=1 pkgdesc="A BibTeX editor for KDE" arch=('i686' 'x86_64' 'mips64el') url='http://home.gna.org/kbibtex/' license=('GPL') -depends=('kdebase-runtime' 'kdegraphics-okular') +depends=('kdebase-runtime') +optdepends=('kdegraphics-okular: Document preview') makedepends=('cmake' 'automoc4') install=$pkgname.install -source=("http://download.gna.org/$pkgname/$_branch/$pkgname-$pkgver.tar.bz2") -md5sums=('657eda1da48198a3c336ff268ce46d6f') +source=("http://download.gna.org/$pkgname/$_branch/$pkgname-$pkgver.tar.xz") +md5sums=('bbd2affd1edfb8f02a077c2c7cfc2038') build() { cd "$pkgname-$pkgver" - cmake -DCMAKE_INSTALL_PREFIX=/usr + cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release make } |