desktop/cb2bib/PKGBUILD

35 lines
1006 B
Bash
Raw Normal View History

2010-11-03 00:54:58 +08:00
#
# Apps Packages for Chakra, part of chakra-project.org
#
# maintainer (x86_64): Giuseppe Calà <jiveaxe@gmail.com>
# include global config
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
pkgname=cb2bib
2012-01-06 01:01:35 +08:00
pkgver=1.4.7
2010-11-03 00:54:58 +08:00
pkgrel=1
pkgdesc="A tool for parsing clipboard data into BibTeX bibliographic database files"
arch=('i686' 'x86_64')
url="http://www.molspaces.com/cb2bib/"
license=('GPL3')
depends=('desktop-file-utils' 'lzo2' 'qt>=4.4.0')
optdepends=('openssl: network reference query support'
'perl-exiftool: meta data support'
'texlive-latex3: file correctness checking; bib2pdf printing'
'xpdf: pdftotext support')
install=cb2bib.install
source=(http://www.molspaces.com/dl/progs/$pkgname-$pkgver.tar.gz)
2012-01-06 01:01:35 +08:00
md5sums=('e464dff22bf672b665e3828855679f93')
2010-11-03 00:54:58 +08:00
build() {
cd "$srcdir/$pkgname-$pkgver"
./configure --prefix /usr --qmakepath /usr/bin/qmake
make || return 1
}
package() {
cd "$srcdir/$pkgname-$pkgver"
make INSTALL_ROOT="$pkgdir" install
}