talimat 451 B

12345678910111213141516171819
  1. # Description: DSP library derived from Speex
  2. # URL: http://downloads.us.xiph.org
  3. # Packager: milisarge
  4. # Depends on:
  5. name=speexdsp
  6. version=1.2rc3
  7. release=1
  8. source=(http://downloads.us.xiph.org/releases/speex/$name-$version.tar.gz)
  9. build() {
  10. cd $name-$version
  11. ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --disable-static
  12. make
  13. make DESTDIR="$PKG" install
  14. install -Dm644 COPYING "$PKG/usr/share/licenses/$pkgname/LICENSE"
  15. }