22 lines
440 B
Plaintext
22 lines
440 B
Plaintext
|
# Tanım: Basit bir c11 derleyici
|
|||
|
# URL: https://github.com/rui314/8cc
|
|||
|
# Paketçi: Cihan_Alkan
|
|||
|
# Gerekler:
|
|||
|
# Grup: geliştirme
|
|||
|
|
|||
|
isim=8cc
|
|||
|
surum=git
|
|||
|
devir=1
|
|||
|
|
|||
|
kaynak=(fix_cflags.patch)
|
|||
|
|
|||
|
derle() {
|
|||
|
git_indir https://github.com/rui314/$isim $isim
|
|||
|
cd $SRC/$isim
|
|||
|
patch -p1 < ../fix_cflags.patch
|
|||
|
make
|
|||
|
install -Dm755 8cc "$PKG/usr/bin/8cc"
|
|||
|
cp -rf $SRC/$isim/include $PKG/usr/
|
|||
|
install -Dm644 LICENSE "$PKG/usr/share/licenses/$isim/LICENSE"
|
|||
|
}
|