mirror of
https://github.com/BioArchLinux/Packages.git
synced 2025-03-10 12:02:42 +00:00
21 lines
652 B
Bash
Executable file
21 lines
652 B
Bash
Executable file
# Maintainer: Malacology <guoyizhang at malacology dot com>
|
|
# Contributor: FabioLolix
|
|
|
|
pkgname=free-delta
|
|
pkgver=2.8.4
|
|
pkgrel=1
|
|
pkgdesc="An Open Source System for Processing Taxonomic Descriptions"
|
|
arch=('x86_64')
|
|
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=('952e8c75117ad8eaa6c295a920b8681119c2f4832de344d015692c4869eb3097')
|
|
|
|
package() {
|
|
install -dDm755 "$pkgdir"/usr/{bin,share/free-delta}
|
|
|
|
tar -p -xf data.tar.xz -C "${pkgdir}"
|
|
chmod 755 -R ../pkg/${pkgname}/usr
|
|
}
|