mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
29 lines
901 B
Bash
29 lines
901 B
Bash
pkgname=cb2bib
|
|
pkgver=1.9.7
|
|
pkgrel=1
|
|
pkgdesc="A tool for parsing clipboard data into BibTeX bibliographic database files"
|
|
arch=('x86_64')
|
|
url="http://www.molspaces.com/cb2bib/"
|
|
license=('GPL3')
|
|
depends=('desktop-file-utils' 'lzo2' 'qt5-base' 'qt5-x11extras' 'qt5-webkit')
|
|
makedepends=('qt5-tools')
|
|
optdepends=('openssl: network reference query support'
|
|
'perl-exiftool: meta data support'
|
|
'texlive-latex3: file correctness checking; bib2pdf printing'
|
|
'xpdf: pdftotext support')
|
|
categories=('office')
|
|
install=cb2bib.install
|
|
source=(http://www.molspaces.com/dl/progs/$pkgname-$pkgver.tar.gz)
|
|
sha256sums=('fae8520d85a01066434dbdc9357663467c20b4578229cea3047cc6f069dd283f')
|
|
|
|
build() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
./configure --prefix /usr --qmakepath /usr/bin/qmake-qt5
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
make INSTALL_ROOT="$pkgdir" install
|
|
}
|