diff options
author | André Fabian Silva Delgado <emulatorman@parabola.nu> | 2016-12-04 01:14:18 -0300 |
---|---|---|
committer | André Fabian Silva Delgado <emulatorman@parabola.nu> | 2016-12-04 01:20:18 -0300 |
commit | d671d5690819fe1d94027d14abf658dd61ea9bc1 (patch) | |
tree | e525a8cdb1b50a3b0d6aca6f7350d6f51b441ef2 /libre/icecat-raismth/PKGBUILD | |
parent | d30022f4d8b44d727ce915c11cb421858ffd6d61 (diff) | |
download | abslibre-d671d5690819fe1d94027d14abf658dd61ea9bc1.tar.gz abslibre-d671d5690819fe1d94027d14abf658dd61ea9bc1.tar.bz2 abslibre-d671d5690819fe1d94027d14abf658dd61ea9bc1.zip |
icecat-*: move packages to [libre] -> https://savannah.gnu.org/forum/forum.php?forum_id=8747
Diffstat (limited to 'libre/icecat-raismth/PKGBUILD')
-rw-r--r-- | libre/icecat-raismth/PKGBUILD | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/libre/icecat-raismth/PKGBUILD b/libre/icecat-raismth/PKGBUILD new file mode 100644 index 000000000..1bdd66289 --- /dev/null +++ b/libre/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: |