talimat 355 B

12345678910111213141516171819
  1. # Description: Snappy bir sıkıştırma / açma kütüphanesi.
  2. # URL: http://code.google.com/p/snappy/
  3. # Packager: milisarge
  4. # Depends on:
  5. name=snappy
  6. version=1.1.1
  7. release=1
  8. source=(http://snappy.googlecode.com/files/$name-$version.tar.gz)
  9. build () {
  10. cd $name-$version
  11. CXXFLAGS+=\ -DNDEBUG
  12. ./configure --prefix=/usr
  13. make
  14. make DESTDIR=$PKG install
  15. }