diff options
author | André Fabian Silva Delgado <emulatorman@parabola.nu> | 2016-10-24 06:31:07 -0300 |
---|---|---|
committer | André Fabian Silva Delgado <emulatorman@parabola.nu> | 2016-10-24 06:31:49 -0300 |
commit | e8907fab6658afc6681f1a40e28f058fa87f4575 (patch) | |
tree | 5d31c6b2df1393df4320a2dd5bb8d80ea22eeb60 /unmaintained/icecat-raismth | |
parent | 713bf090423e07809d39d2facdf61aefad1cebec (diff) | |
download | abslibre-e8907fab6658afc6681f1a40e28f058fa87f4575.tar.gz abslibre-e8907fab6658afc6681f1a40e28f058fa87f4575.tar.bz2 abslibre-e8907fab6658afc6681f1a40e28f058fa87f4575.zip |
icecat: move package and its dependencies to [unmaintained] -> https://lists.parabola.nu/pipermail/dev/2016-October/004529.html
Diffstat (limited to 'unmaintained/icecat-raismth')
-rw-r--r-- | unmaintained/icecat-raismth/PKGBUILD | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/unmaintained/icecat-raismth/PKGBUILD b/unmaintained/icecat-raismth/PKGBUILD new file mode 100644 index 000000000..1bdd66289 --- /dev/null +++ b/unmaintained/icecat-raismth/PKGBUILD @@ -0,0 +1,28 @@ +# $Id: PKGBUILD 101450 2013-11-25 21:16:28Z speps $ +# Maintainer (Arch): speps <speps at aur dot archlinux dot org> + +pkgname=icecat-raismth +pkgver=4.0.1 +pkgrel=1.2 +pkgdesc="IceCat plugin for watching Rai.tv live channels, vod and replay contents w/o *light (Silverlight/Moonlight)" +arch=('any') +url="http://acab.servebeer.com/" +license=('GPL3') +groups=('icecat-addons') +depends=('icecat') +optdepends=('mplayer: default video player' + 'faad: default audio player') +provides=('raismth') +source=("${url}raismth-$pkgver.xpi") +md5sums=('f772ef1a74b0aba3a739849fee3238ea') + +package() { + cd "$srcdir" + + # extension + _dest="$pkgdir/usr/lib/icecat/browser/extensions/raismth@mitm.rc" + find . -type d -exec install -d {} $_dest/{} \; + find . -type f -exec install -Dm644 {} $_dest/{} \; +} + +# vim:set ts=2 sw=2 et: |