diff options
author | Nicolás Reynolds <fauno@endefensadelsl.org> | 2015-05-28 11:29:47 -0300 |
---|---|---|
committer | Nicolás Reynolds <fauno@endefensadelsl.org> | 2015-05-28 11:29:47 -0300 |
commit | fcb2d26cfa3b265200b5ae9e949d787a56bd4f14 (patch) | |
tree | 60bf5147d7608e6217b37e6807c386b3a43a2b36 /pcr/tvenlinux-desktop | |
parent | 19fe7e7da672746eea0c2cae0307cea5e54fb23e (diff) | |
parent | b0bb663657922f0154dd8d60a6d5455f9a2bfe3c (diff) | |
download | abslibre-fcb2d26cfa3b265200b5ae9e949d787a56bd4f14.tar.gz abslibre-fcb2d26cfa3b265200b5ae9e949d787a56bd4f14.tar.bz2 abslibre-fcb2d26cfa3b265200b5ae9e949d787a56bd4f14.zip |
Merge branch 'master' of git://projects.parabola.nu/abslibre/abslibre
Diffstat (limited to 'pcr/tvenlinux-desktop')
-rw-r--r-- | pcr/tvenlinux-desktop/PKGBUILD | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/pcr/tvenlinux-desktop/PKGBUILD b/pcr/tvenlinux-desktop/PKGBUILD index 8f92787aa..33062cbf6 100644 --- a/pcr/tvenlinux-desktop/PKGBUILD +++ b/pcr/tvenlinux-desktop/PKGBUILD @@ -1,17 +1,19 @@ -# Contributor (Arch) : ValHue <vhuelamo at gmail dot com> -# Maintainer (Parabola) : Aurélien DESBRIÈRES <aurelien@hackers.camp> +# Maintainer (Arch): ValHue <vhuelamo at gmail dot com> +# Maintainer: Aurélien DESBRIÈRES <aurelien@hackers.camp> # https://github.com/ValHue/AUR-PKGBUILDs pkgname=tvenlinux-desktop -pkgver=20140127 -pkgrel=2 +pkgver=20140601 +pkgrel=1 pkgdesc="Simple bash script to watch and record TV on GNU/Linux/BSD without capture card/tuner. (TV in Spain, Peru, Chile, Cuba, Venezuela, Bolivia and Argentina)" url="http://www.tvenlinux.com/" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') license=('GPL3') depends=('mplayer' 'rtmpdump') optdepends=('zenity: for GTK users' 'kdialog: for QT users' 'curl: for view EPG (Electronic Program Guide)') -source=("http://www.tvenlinux.com/TVenLinux_2.sh" "http://www.tvenlinux.com/busi_tv.png") +source=("http://www.tvenlinux.com/TVenLinux.sh" "http://www.tvenlinux.com/busi_tv.png") +md5sums=('a8f1c8d9d87f84e29bcca2de1656a3fd' + '57fe139851d8227320dc2b78a9390dd6') _pkgname="TVenLinux" @@ -29,7 +31,7 @@ MimeType=x-scheme-handler/sop;" pkgver() { cd "${srcdir}" - cat TVenLinux_2.sh | grep -e 'V_script=' | sed -e 's/V_script=//;s/"//g;s/;//;s/\///g;s/^\(.\)\(.\)\(.\)\(.\)\(.\)\(.\)\(.\)\(.\)/\5\6\7\8\3\4\1\2/' + cat TVenLinux.sh | grep -e 'V_script=' | sed -e 's/V_script=//;s/"//g;s/;//;s/\///g;s/^\(.\)\(.\)\(.\)\(.\)\(.\)\(.\)\(.\)\(.\)/\5\6\7\8\3\4\1\2/' } build() { @@ -43,7 +45,7 @@ package() { install -d ${pkgdir}/usr/share/applications install -d ${pkgdir}/usr/share/pixmaps install -d ${pkgdir}/usr/bin - install -m 755 ${_pkgname}_2.sh ${pkgdir}/usr/bin/${_pkgname} + install -m 755 ${_pkgname}.sh ${pkgdir}/usr/bin/${_pkgname} install -m 644 ${_pkgname}.desktop ${pkgdir}/usr/share/applications install -m 644 ${_pkgname}.png ${pkgdir}/usr/share/pixmaps } |