mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-10 14:04:37 +08:00
29 lines
636 B
Bash
29 lines
636 B
Bash
#
|
|
# Chakra Packages for Chakra, part of chakraos.org
|
|
#
|
|
# maintainer almack
|
|
|
|
pkgname=rtmpdump
|
|
pkgver=2.4.20140706
|
|
pkgrel=1
|
|
pkgdesc="A tool to download rtmp streams"
|
|
arch=('x86_64')
|
|
url="http://rtmpdump.mplayerhq.hu/"
|
|
license=('GPL2' 'LGPL2.1')
|
|
depends=('openssl')
|
|
categories=('network')
|
|
#source=("http://rtmpdump.mplayerhq.hu/download/${pkgname}-${pkgver}.tar.gz")
|
|
source=(git://git.ffmpeg.org/rtmpdump#commit=a1900c3)
|
|
md5sums=('SKIP')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}"
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}"
|
|
install -d -m755 "${pkgdir}/usr/lib"
|
|
make prefix=/usr mandir=/usr/share/man DESTDIR="${pkgdir}" install
|
|
}
|