123456789101112131415161718192021 |
- # Tanım: Lua içinde kullanılan C işlevlerinin bağlanması
- # URL: https://github.com/torch/cwrap
- # Paketçi: milisarge
- # Gerekler: git
- # Grup: kütüphane
- isim=torch7-cwrap
- surum=1.0
- devir=1
- kaynak=()
- derle() {
- git_indir https://github.com/torch/cwrap $isim
- cd $SRC/$isim
- for filename in *.lua ; do
- install -Dm644 "${filename}" \
- "${PKG}/usr/share/lua/5.1/cwrap/${filename}"
- done
- }
|