15 lines
330 B
Plaintext
15 lines
330 B
Plaintext
# Description: Software build tool
|
|
# URL: http://www.perforce.com/jam/jam.html
|
|
# Maintainer: Mark Rosenstand, mark at borkware dot net
|
|
|
|
name=jam
|
|
version=2.5
|
|
release=1
|
|
source=(ftp://ftp.perforce.com/pub/jam/jam-$version.zip)
|
|
|
|
build() {
|
|
make
|
|
./jam0 -sBINDIR=$PKG/usr/bin -sOPTIM="$CFLAGS" install
|
|
chmod -v +r $PKG/usr/bin/jam
|
|
}
|