12345678910111213141516171819202122232425 |
- # Template file for 'gcc-latest'
- pkgname=gcc-latest
- version=15.0.0
- revision=1
- _git=20240623giteb647daa87b4
- _filename="${pkgname}_${version}-${_git}.deb"
- archs="x86_64"
- hostmakedepends="tar xz"
- short_desc="GNU Compiler Snapshots"
- maintainer="MarcoAPC <marcoaureliopc@gmail.com>"
- license="GPL-3.0-or-later"
- homepage="https://jwakely.github.io/pkg-gcc-latest/"
- distfiles="http://kayari.org/gcc-latest/${pkgname}_${version}-${_git}.deb"
- checksum=ff7900c36dd95ed3581ea7c9bd000c7da85a92083a2c5a9ec4e6b050d9a3ffad
- nostrip=yes
- do_extract() {
- mkdir -p ${DESTDIR}
- ar x ${XBPS_SRCDISTDIR}/${pkgname}-${version}/${_filename}
- }
- do_install() {
- tar xf data.tar.xz -C ${DESTDIR}
- }
|