Skip to content

Instantly share code, notes, and snippets.

@stubb
Created July 29, 2012 15:33
Show Gist options
  • Save stubb/3199515 to your computer and use it in GitHub Desktop.
Save stubb/3199515 to your computer and use it in GitHub Desktop.
PKGBUILD for eclipse clp
# Maintainer: Sven Schober <sschober (at) sssm (dot) de>
# Contributor(s): ECRC GmbH\
# Contributor(s): IC-Parc, Imperial College London
pkgname=eclipse-clp-x86_64
pkgver=6.0.192
pkgrel=1
pkgdesc="Constraint Logic Programming System"
arch=('x86_64')
url="http://eclipseclp.org/"
license=('CMPL 1.1')
depends=('tk')
install=eclipse-clp.install
source=('http://eclipseclp.org/Distribution/6.0_194/x86_64_linux/eclipse_basic.tgz'
'eclipse-clp.sh')
md5sums=('e26bfa5f16aabb51c3ded28d8c298ee1'
'46d4d43af0d59ecec2401706714dad8f')
build() {
cd ${srcdir}
# remove this symlink created by makepkg...
rm eclipse_basic.tgz
targetDir=${pkgdir}/opt/eclipse-clp
mkdir -p ${targetDir}
cp -dR * ${targetDir}
install -Dm755 eclipse-clp.sh ${pkgdir}/etc/profile.d/eclipse-clp.sh
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment