Created
January 22, 2017 17:01
-
-
Save NickHu/330e44fd86a2ef77e2fe056c4d1fe372 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Maintainer: Nick Hu <[email protected]> | |
pkgname=fdr | |
pkgver=4.2.0 | |
pkgrel=1 | |
pkgdesc="Refinement checker for CSP" | |
arch=('x86_64') | |
url="https://www.cs.ox.ac.uk/projects/fdr/" | |
license=('custom') | |
depends=('libtinfo5') | |
source=("https://www.cs.ox.ac.uk/projects/fdr/downloads/fdr-3754-linux-x86_64.tar.gz") | |
md5sums=('c09a05a5d9b54fc65ed12de8b7cdfc11') | |
package() { | |
mkdir -p "${pkgdir}/opt" | |
cp -R "${srcdir}/fdr" "${pkgdir}/opt/fdr" | |
mkdir -p "${pkgdir}/usr/bin" | |
for c in cspmexplorerprof fdr4 refines _fdr4 _refines; do | |
ln -s "../../opt/fdr/bin/$c" "${pkgdir}/usr/bin" | |
done | |
mkdir -p "${pkgdir}/usr/share/doc/fdr" | |
ln -s "../../../../opt/fdr/fdr-examples" "${pkgdir}/usr/share/doc/fdr/examples" | |
} | |
# vim:set ts=2 sw=2 et: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment