talimat 477 B

12345678910111213141516171819202122
  1. # Tanım: Google günlükleme modülünün c++ uygulaması
  2. # URL: https://github.com/google/glog
  3. # Paketçi: milisarge
  4. # Gerekler: git
  5. # Grup: kütüphane
  6. isim=glog
  7. surum=0.3.4
  8. devir=1
  9. kaynak=(https://github.com/google/glog/archive/v${surum}.tar.gz::$isim-$surum.tar.gz)
  10. derle() {
  11. cd "$SRC/$isim-$surum"
  12. aclocal
  13. autoconf
  14. automake -a
  15. ./configure
  16. make
  17. make prefix="/usr" DESTDIR="$PKG" install
  18. install -Dm644 "COPYING" "$PKG/usr/share/licenses/$isim/COPYING"
  19. }