18 lines
501 B
Plaintext
18 lines
501 B
Plaintext
|
# Tanım: A simple build configuration and project generation tool using lua
|
|||
|
# URL: http://industriousone.com/premake
|
|||
|
# Paketçi: milisarge
|
|||
|
# Gerekler:
|
|||
|
|
|||
|
isim=premake
|
|||
|
surum=4.3
|
|||
|
devir=1
|
|||
|
kaynak=(http://downloads.sourceforge.net/project/premake/Premake/4.3/premake-4.3-src.zip)
|
|||
|
|
|||
|
derle() {
|
|||
|
cd "$SRC/premake-$surum/build/gmake.unix"
|
|||
|
make
|
|||
|
cd "$SRC/premake-$surum"
|
|||
|
install -Dm755 "bin/release/premake4" "${PKG}/usr/bin/premake4"
|
|||
|
install -Dm644 LICENSE.txt "$PKG/usr/share/licenses/$isim/LICENSE"
|
|||
|
}
|