mirror of
https://github.com/BioArchLinux/Packages.git
synced 2025-03-10 12:02:42 +00:00
21 lines
659 B
Bash
Executable file
21 lines
659 B
Bash
Executable file
# Maintainer: Malacology <guoyizhang at malacology dot com>
|
|
# Contributor: FabioLolix
|
|
|
|
pkgname=free-delta
|
|
pkgver=2.8.2
|
|
pkgrel=1
|
|
pkgdesc="An Open Source System for Processing Taxonomic Descriptions"
|
|
arch=('x86_64' 'i386')
|
|
url="http://freedelta.sourceforge.net/"
|
|
#url="https://www.delta-intkey.com/"
|
|
license=('GPL3')
|
|
depends=(gtk2)
|
|
source=("https://sourceforge.net/projects/freedelta/files/freedelta/freedelta_${pkgver}_amd64.deb")
|
|
sha256sums=('90f9ce3bb0cedeb9ddb44a8e17bfedda38615fe16b7743b76332109443c32a29')
|
|
|
|
package() {
|
|
install -dDm755 "$pkgdir"/usr/{bin,share/free-delta}
|
|
|
|
tar -p -xf data.tar.xz -C "${pkgdir}"
|
|
chmod 755 -R ../pkg/${pkgname}/usr
|
|
}
|