summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 34d97d77ed4d653b4d558f60880f39f4bf7dccaf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# Maintainer: Lennard Fleischer <lefl65@gmail.com>
# Contributor: Will Price <will.price94@gmail.com>

pkgname=nqc
pkgver=3.1.r6
pkgrel=2
pkgdesc="Not Quite C is a simple language with a C-like syntax that can be used to program Lego's RCX programmable brick (from the Mindstorms set)."
arch=('i686' 'x86_64')
url='http://bricxcc.sourceforge.net/nqc/'
license=('custom:MPL')
dependends=('gcc' 'glibc')
source=(
    'http://bricxcc.sourceforge.net/nqc/release/nqc-3.1.r6.tgz'
    'http://sourceforge.net/p/bricxcc/patches/_discuss/thread/00b427dc/b84b/attachment/nqc-01-Linux_usb_and_tcp.diff'
)
sha512sums=(
    '7ec7015861b5f8e063e3a2567f5c6ff7e5c6a65b60fab9bef71411d59b13a588f284ee3a8d06b9325748c209e21f9480b9792bc605148e2a4af64b90f872e2aa'
    '639e30642f030a1f9bb39eb497b4f2432f6e39684629b3729b1773a2f56b23b75635cd08638172707c9826059dc1a4a5f18dc53b1519cfe139f85386e4809af7'
)

build() {
    patch -p1 < nqc-01-Linux_usb_and_tcp.diff
    make clean
    make
}

package() {
    mkdir -p ${pkgdir}/usr/bin/
    cp -r bin/* ${pkgdir}/usr/bin/
}