Skip to content

Instantly share code, notes, and snippets.

@jefdaj
Last active December 23, 2015 04:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jefdaj/6584185 to your computer and use it in GitHub Desktop.
Save jefdaj/6584185 to your computer and use it in GitHub Desktop.
tclkit updated PKGBUILD
# Contributor: BenObiWan <benobiwan @t gmail dot com>
# Contributor: Simon Bachmann <simonbachmann@freesurf.ch>
# Contributor: Jeffrey David Johnson <jefdaj@gmail.com>
pkgname=tclkit
pkgver=8.5.1
pkgrel=5
pkgdesc="A compact, single file executable containing Tcl, Tk, IncrTcl, TclVFS and Metakit"
url="http://www.equi4.com/tclkit/"
arch=('i686' 'x86_64')
license="MIT"
options=(!strip)
source=(http://tclkit.googlecode.com/files/$pkgname-$pkgver-linux-x86.gz http://tclkit.googlecode.com/files/$pkgname-$pkgver-linux-x86_64.gz)
md5sums=('fb0cbfa4b54f07d83098b5f53af353a6'
'4b0e73092ba6295ef548b1254c3d79cc')
build() {
mkdir -p "$pkgdir"/usr/bin
if [ "${CARCH}" = "i686" ]; then
install -o root -g root "$srcdir"/$pkgname-$pkgver-linux-x86 "$pkgdir"/usr/bin/tclkit
else
install -o root -g root "$srcdir"/$pkgname-$pkgver-linux-x86_64 "$pkgdir"/usr/bin/tclkit
fi
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment