diff options
author | Francesco Colista <francesco.colista@gmail.com> | 2011-11-13 15:41:59 +0000 |
---|---|---|
committer | Francesco Colista <francesco.colista@gmail.com> | 2011-11-13 15:41:59 +0000 |
commit | 4d635451b88a543ece4720f39ed41289df63d9af (patch) | |
tree | 37237d385b5bcf17c4e084a7317d161fe73ce891 /testing | |
parent | 246c4ebdcaefe694bc995d2d7c68c0987a3a4a83 (diff) | |
download | aports-4d635451b88a543ece4720f39ed41289df63d9af.tar.bz2 aports-4d635451b88a543ece4720f39ed41289df63d9af.tar.xz |
testing/tvheadend: new aport
Diffstat (limited to 'testing')
-rw-r--r-- | testing/tvheadend/APKBUILD | 45 | ||||
-rw-r--r-- | testing/tvheadend/tvheadend-git.confd | 2 | ||||
-rw-r--r-- | testing/tvheadend/tvheadend-git.initd | 18 | ||||
-rw-r--r-- | testing/tvheadend/tvheadend-git.post-deinstall | 4 | ||||
-rw-r--r-- | testing/tvheadend/tvheadend-git.pre-install | 5 |
5 files changed, 74 insertions, 0 deletions
diff --git a/testing/tvheadend/APKBUILD b/testing/tvheadend/APKBUILD new file mode 100644 index 0000000000..d8d81599ba --- /dev/null +++ b/testing/tvheadend/APKBUILD @@ -0,0 +1,45 @@ +# Contributor: Francesco Colista <francesco.colista@gmail.com> +# Maintainer: Francesco Colista <francesco.colista@gmail.com> +pkgname=tvheadend-git +_pkgname=andoma-tvheadend-fdc743f +pkgver=2.13 +pkgrel=0 +pkgdesc="TV Streaming server for linux" +url="http://www.lonelycoder.com/hts/tvheadend_overview.html" +arch="all" +license="GPL3" +depends="" +depends_dev="openssl-dev avahi-dev wget bash findutils" +makedepends="$depends_dev" +install="$pkgname.pre-install $pkgname.post-deinstall" +subpackages="" +source="saveas-https://github.com/andoma/tvheadend/tarball/master/$pkgname-$pkgver.tar.gz +tvheadend-git.initd +tvheadend-git.confd +" +_builddir="$srcdir"/$_pkgname +prepare() { + local i + cd "$_builddir" + for i in $source; do + case $i in + *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;; + esac + done +} +build() { + cd "$_builddir" + ./configure --prefix=/usr --release + make || return 1 +} +package() { + cd "$_builddir" + sed -i 's/\-T//g' support/posix.mk + make DESTDIR="$pkgdir" install || return 1 + install -m755 -D "$srcdir"/$pkgname.initd "$pkgdir"/etc/init.d/$pkgname || return 1 + install -m755 -D "$srcdir"/$pkgname.confd "$pkgdir"/etc/conf.d/$pkgname || return 1 +} + +md5sums="97c51df1daca8db241dee8b9c55d0aad tvheadend-git-2.13.tar.gz +4d6324b1b87890faf846ad95c2f3483c tvheadend-git.initd +74749f3527418ddfd5671d5d5ad4dca4 tvheadend-git.confd" diff --git a/testing/tvheadend/tvheadend-git.confd b/testing/tvheadend/tvheadend-git.confd new file mode 100644 index 0000000000..a912932aea --- /dev/null +++ b/testing/tvheadend/tvheadend-git.confd @@ -0,0 +1,2 @@ +TVHBIN="/usr/bin/tvheadend" +TVHUSER="tvheadend" diff --git a/testing/tvheadend/tvheadend-git.initd b/testing/tvheadend/tvheadend-git.initd new file mode 100644 index 0000000000..6a50b9f3f2 --- /dev/null +++ b/testing/tvheadend/tvheadend-git.initd @@ -0,0 +1,18 @@ +#!/sbin/runscript +depend() { + need net +} + +start() { + ebegin "Starting tvheadend" + start-stop-daemon --start \ + --user ${TVHUSER} \ + --exec ${TVHBIN} -- -C -f + eend $? +} + +stop() { + ebegin "Stopping tvheadend" + start-stop-daemon --stop --quiet --name tvheadend --signal 2 + eend $? +} diff --git a/testing/tvheadend/tvheadend-git.post-deinstall b/testing/tvheadend/tvheadend-git.post-deinstall new file mode 100644 index 0000000000..b80984d6f0 --- /dev/null +++ b/testing/tvheadend/tvheadend-git.post-deinstall @@ -0,0 +1,4 @@ +#!/bin/sh + +deluser hts 2>/dev/null +exit 0 diff --git a/testing/tvheadend/tvheadend-git.pre-install b/testing/tvheadend/tvheadend-git.pre-install new file mode 100644 index 0000000000..73f865ca47 --- /dev/null +++ b/testing/tvheadend/tvheadend-git.pre-install @@ -0,0 +1,5 @@ +#!/bin/sh +groupadd tvheadend 2>/dev/null +adduser -H -h /home/tvheadend -g tvheadend -D -s /bin/false tvheadend 2>/dev/null +gpasswd -a tvheadend video 2>/dev/null +exit 0 |