This commit is contained in:
milisbir 2018-01-31 12:38:10 +02:00
parent bcfd4a118f
commit 06303c8a94
1 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,27 @@
# Tanım: İkili dosyalar için bir boyut profilci
# URL: https://github.com/google/bloaty
# Paketçi: Cihan_Alkan
# Gerekler: cmake
# Grup: sistem
isim=bloaty
surum=git
devir=1
kaynak=()
derle() {
adres="https://github.com/google/bloaty"
git_indir ${adres} ${isim}
cd $SRC/${isim}
rm -rf "${SRC}/build"
mkdir "${SRC}/build"
cd "${SRC}/build"
cmake -G 'Unix Makefiles' \
-DCMAKE_INSTALL_PREFIX=/usr \
"${SRC}/bloaty"
make
install -Dm755 "${SRC}/build/bloaty" "${PKG}/usr/bin/bloaty"
}