blob: 78a43e8bdb1f9fe981e3c362c033a886a04b95ef (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/bash
DEPS=(glibc gnutls zlib)
SOURCE=git://git.ffmpeg.org/rtmpdump
DESC="Tool to download rtmp streams"
build () {
make SYS=posix
make DESTDIR=$PKG_DEST install
}
|