files
kolibrios-gcc-toolchain/PKGBUILD
2025-06-16 07:11:40 +00:00

20 lines
560 B
Bash

# This is an example PKGBUILD file. Use this as a start to creating your own,
# and remove these comments. For more information, see 'man PKGBUILD'.
# NOTE: Please fill out the license field for your package! If it is unknown,
# then please put 'unknown'.
# Maintainer: Your Name <youremail@domain.com>
pkgname="kos32-gcc"
pkgver="0.1.7"
pkgrel="1"
pkgdesc="KolibriOS gcc toolchain installer"
arch=("x86_64")
url="https://github.com/Egor00f/kolibrios-gcc-toolchain/"
license=('MIT')
source=("install.sh")
md5sums=("SKIP")
package() {
${srcdir}/install.sh
}