mirror of
https://github.com/Egor00f/kolibrios-gcc-toolchain.git
synced 2025-09-20 18:00:07 +02:00
20 lines
560 B
Bash
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
|
|
}
|