Skip to content

Instantly share code, notes, and snippets.

@YamashitaRen
Created January 24, 2015 22:05
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 YamashitaRen/acd24f6c9174b07b7daf to your computer and use it in GitHub Desktop.
Save YamashitaRen/acd24f6c9174b07b7daf to your computer and use it in GitHub Desktop.
The TreeP programming language compiler
# Contributor: Rob McCathie <archaur at rmcc dot com dot au>
# Contributor: Xemertix <arch88(at)katamail(dot)com>
pkgname=trpc
pkgver=20120628
pkgrel=1
pkgdesc="The TreeP programming language compiler"
url="http://fsinapsi.altervista.org"
license=("GPL")
depends=("trpc-libs=$pkgver")
makedepends=()
source=("http://fsinapsi.altervista.org/code/treep/trp-${pkgver}.zip")
md5sums=('90171f278e558cb4317e51d1b40d0889')
arch=('i686' 'x86_64')
build() {
cd $srcdir/trp-$pkgver/compiler
make bootstrap|| return 1
}
package() {
cd $srcdir/trp-$pkgver/compiler
install -D -m 755 trpc ${pkgdir}/usr/bin/trpc
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment