milis/talimatname/genel/i/innoextract/talimat

24 lines
650 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: Inno Setup tarafından oluşturulan yükleyicileri ayıklamak için kullanılan bir araç
# URL: https://constexpr.org/innoextract
# Paketçi: Cihan_Alkan
# Gerekler: boost cmake
# Grup:
isim=innoextract
surum=1.6
devir=1
kaynak=(https://constexpr.org/innoextract/files/$isim-$surum.tar.gz)
derle() {
cd "$isim-$surum"
cmake . -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release
make
make DESTDIR="$PKG/" install
install -Dm644 README.md "$PKG/usr/share/doc/$isim/README.md"
install -m644 CHANGELOG "$PKG/usr/share/doc/$isim/CHANGELOG"
install -Dm644 LICENSE "$PKG/usr/share/licenses/$isim/LICENSE"
}