mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-03 23:47:22 +08:00
29 lines
901 B
Bash
29 lines
901 B
Bash
pkgname=cb2bib
|
|
pkgver=1.9.4
|
|
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=('e31efacae6c4c4646113a2dd328651900b19744fbdb23c8c2c8c279ae3ca29d3')
|
|
|
|
build() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
./configure --prefix /usr --qmakepath /usr/bin/qmake-qt5
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
make INSTALL_ROOT="$pkgdir" install
|
|
}
|