talimat 885 B

1234567891011121314151617181920212223242526272829303132
  1. # Tanım: MusicIP tarafından açık kaynaklı bir ses parmak izi
  2. # URL: https://github.com/tanob/libofa
  3. # Paketçi: Cihan_Alkan
  4. # Gerekler: fftw
  5. # Grup: kütüphane
  6. isim=libofa
  7. surum=0.9.3
  8. devir=1
  9. kaynak=(https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/musicip-libofa/libofa-$surum.tar.gz
  10. libofa-gcc4.patch
  11. libofa-gcc4.3.patch
  12. libofa-gcc4.5.patch
  13. libofa-0.9.3-curl-7.21.patch
  14. libofa-0.9.3-gcc-4.7.patch)
  15. derle() {
  16. cd ${isim}-${surum}
  17. patch -p0 -i "${SRC}/libofa-gcc4.patch"
  18. patch -p1 -i "${SRC}/libofa-gcc4.3.patch"
  19. patch -p1 -i "${SRC}/libofa-gcc4.5.patch"
  20. patch -p1 -i "${SRC}/libofa-0.9.3-gcc-4.7.patch"
  21. patch -p1 -i "${SRC}/libofa-0.9.3-curl-7.21.patch"
  22. ./configure --prefix=/usr
  23. make
  24. make DESTDIR="${PKG}" install
  25. install -D -m644 COPYING "${PKG}/usr/share/licenses/${isim}/LICENSE"
  26. }