milis/talimatname/genel/l/libgig/talimat

21 lines
588 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: Gigasampler ve DLS dosyalarını yüklemek için C++ kütüphanesi
# URL: https://www.linuxsampler.org/libgig/
# Paketçi: Cihan_Alkan
# Gerekler: libsndfile
# Grup: kütüphane
isim=libgig
surum=4.1.0
devir=1
kaynak=(https://download.linuxsampler.org/packages/$isim-$surum.tar.bz2)
derle() {
cd "${isim}-${surum}"
./configure --prefix=/usr
make
make DESTDIR="${PKG}" install
# add libgig library path to ld.so.conf.d (thanks to libgig-svn for the heads-up)
install -d "${PKG}/etc/ld.so.conf.d"
echo "/usr/lib/${isim}" > "${PKG}/etc/ld.so.conf.d/${isim}.conf"
}