summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: fe6c044cbe6f06a1e9942c01c8abe9cb8b17cfa7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Maintainer: fordprefect <fordprefect@dukun.de>
pkgname=pietcompiler
pkgver=0.6a3
pkgrel=1
pkgdesc="compiler for Piet esotheric langguare, that processes images - unstable"
url="http://www.matthias-ernst.eu/pietcompiler.html"
arch=('x86_64' 'i686')
license=('public domain')
depends=('zlib' 'gcc-libs')
install='piet.install'
source=("http://www.matthias-ernst.eu/pietc/PietCompiler0.6a3.tar.gz"
        'piet.install')
md5sums=('54c4e106ddafd390f2641d00bb014997'
         '686f9c0926e41b49cf0434b0291e4c6d')
 
build() {
    cd "${srcdir}/PietCompiler"
    make all
 }
  
package() {
    install -Dm755 ${srcdir}/PietCompiler/PietCompiler ${pkgdir}/usr/bin/pietcompiler
  }