mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-05-02 19:11:47 +02:00
http://tanidvr.sourceforge.net - a CLI tool for accessing DVRs and IP cameras based on the proprietary DVR-IP protocol (port 37777/TCP) - a CLI tool for converting .dhav/.dav video files only playable with the proprietary Dahua player
38 lines
1.2 KiB
Plaintext
38 lines
1.2 KiB
Plaintext
# Contributor: Valery Kartel <valery.kartel@gmail.com>
|
|
# Maintainer: Valery Kartel <valery.kartel@gmail.com>
|
|
pkgname=tanidvr
|
|
pkgver=1.4.1
|
|
pkgrel=0
|
|
pkgdesc="a CLI tool for accessing DVRs and IP cameras based on the proprietary DVR-IP protocol (port 37777/TCP)"
|
|
url="http://tanidvr.sourceforge.net"
|
|
arch="all"
|
|
license="GPL3"
|
|
depends=
|
|
depends_dev=
|
|
makedepends=
|
|
install=
|
|
subpackages="$pkgname-dhav2mkv"
|
|
source="http://downloads.sourceforge.net/project/$pkgname/TaniDVR/$pkgname-$pkgver/$pkgname-$pkgver.tar.bz2"
|
|
builddir="$srcdir"/$pkgname-$pkgver
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
./configure --prefix=/usr || return 1
|
|
make || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"
|
|
make DESTDIR="$pkgdir" install || return 1
|
|
}
|
|
|
|
dhav2mkv() {
|
|
pkgdesc="a CLI tool for converting .dhav/.dav video files only playable with the proprietary Dahua player"
|
|
install -d "$subpkgdir"/usr/bin
|
|
mv "$pkgdir"/usr/bin/dhav2mkv "$subpkgdir"/usr/bin
|
|
}
|
|
|
|
md5sums="b0acaaa156560676d864d2826f5fcbf8 tanidvr-1.4.1.tar.bz2"
|
|
sha256sums="149b075a60625ca23a96d71b46db6ed42e1b10d08366d6891f569c558de33c47 tanidvr-1.4.1.tar.bz2"
|
|
sha512sums="49d5416a754b9d5ab80ad02d516bf842b8f6eeb69d2bd72f529ade226de573a3fea77774d0467edce5518f2cd02963d6e9c75eceeb42e47af60212184eaf7c39 tanidvr-1.4.1.tar.bz2"
|