milis/talimatname/genel/l/lld/talimat

25 lines
487 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Tanım: LLVM linker
# URL: http://llvm.org/
# Paketçi: milisarge
# Gerekler: llvm cmake
name=lld
version=4.0.0
release=1
source=(http://releases.llvm.org/$version/lld-$version.src.tar.xz)
build() {
cd $name-$version.src
mkdir build
cd build
cmake ../
make -C tools/lld DESTDIR=$PKG install
cd lib
install -d $PKG/usr/lib/
cp *.a $PKG/usr/lib/
cp -r $SRC/$name-$version.src/include $PKG/usr/
mv $PKG/usr/local/* $PKG/usr/
rm -r $PKG/usr/local
}