blob: 5f7263a7507739ee5a162408ba65452b00a07720 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Maintainer: Udit Karode <udit.karode@gmail.com>
pkgname="ucc"
pkgver=2.9
pkgrel=1
pkgdesc="A bash based wrapper around the DOS based tcc, lets you compile TurboC(++) programs directly from the terminal."
arch=("x86_64")
url="https://github.com/uditkarode/ucc.git"
license=('Apache')
depends=('dosbox' 'git' 'wget' 'curl')
source=(${pkgname}::git+https://github.com/uditkarode/ucc.git)
md5sums=('SKIP')
package() {
install -Dm777 "${pkgname}/ucc" "${pkgdir}/usr/bin/ucc"
mkdir -p "${pkgdir}/var/cache/ucc"
cp -r "${pkgname}/BIN" "${pkgdir}/var/cache/ucc/BIN"
chmod a+x "${pkgdir}/usr/bin/ucc"
}
|