talimat 691 B

12345678910111213141516171819202122232425
  1. # Tanım: Ağ üzerinden ses akışı sağlamak
  2. # URL: http://www.icecast.org/
  3. # Paketçi: milisarge
  4. # Gerekler: libxslt libvorbis speex libtheora
  5. # Grup: medya
  6. isim=icecast
  7. surum=2.4.3
  8. devir=1
  9. kaynak=(http://downloads.us.xiph.org/releases/icecast/icecast-$surum.tar.gz
  10. icecast.logrotate
  11. start-by-nobody.patch)
  12. derle() {
  13. cd "${SRC}/${isim}-${surum}"
  14. patch -Np1 -i "${SRC}/start-by-nobody.patch"
  15. ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
  16. make
  17. make DESTDIR="${PKG}" install
  18. install -Dm644 "${SRC}/icecast.logrotate" "${PKG}/etc/logrotate.d/icecast"
  19. # create log directory
  20. install -d -g99 -o99 "${PKG}/var/log/icecast"
  21. rm -rf $PKG/usr/share/doc
  22. }