diff options
author | Nicolás Reynolds <fauno@kiwwwi.com.ar> | 2012-03-22 12:02:54 -0300 |
---|---|---|
committer | Nicolás Reynolds <fauno@kiwwwi.com.ar> | 2012-03-22 12:02:54 -0300 |
commit | aa49e201b1464851bcebcd821592a2fceeaddcbc (patch) | |
tree | 40708e916d04d7929b2bc2a8c17c796fb91dec8e /community/minitube | |
parent | e555324330bef021c747085c7499fd843ed20f47 (diff) | |
parent | 39e662ccfbe62ae77d458159d192816171a22f43 (diff) |
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts:
community/agave/PKGBUILD
community/raul/PKGBUILD
gnome-unstable/at-spi2-atk/PKGBUILD
gnome-unstable/at-spi2-core/PKGBUILD
gnome-unstable/atk/PKGBUILD
gnome-unstable/cheese/PKGBUILD
gnome-unstable/cogl/PKGBUILD
gnome-unstable/empathy/PKGBUILD
gnome-unstable/eog/PKGBUILD
gnome-unstable/gdk-pixbuf2/PKGBUILD
gnome-unstable/gedit/PKGBUILD
gnome-unstable/glib-networking/PKGBUILD
gnome-unstable/gnome-bluetooth/PKGBUILD
gnome-unstable/gnome-documents/PKGBUILD
gnome-unstable/gnome-documents/gnome-documents.install
gnome-unstable/gnome-shell/PKGBUILD
gnome-unstable/gnome-system-monitor/PKGBUILD
gnome-unstable/gnome-system-monitor/gnome-system-monitor.install
gnome-unstable/gnome-themes-standard/PKGBUILD
gnome-unstable/gtk3/PKGBUILD
gnome-unstable/gtksourceview3/PKGBUILD
gnome-unstable/libsoup/PKGBUILD
gnome-unstable/libwebkit/PKGBUILD
gnome-unstable/metacity/PKGBUILD
gnome-unstable/mutter/PKGBUILD
gnome-unstable/nautilus/PKGBUILD
gnome-unstable/sushi/PKGBUILD
gnome-unstable/telepathy-farstream/PKGBUILD
multilib/lib32-libdrm/PKGBUILD
multilib/lib32-libdrm/no-pthread-stubs.patch
testing/iproute2/PKGBUILD
testing/openssh/PKGBUILD
Diffstat (limited to 'community/minitube')
-rw-r--r-- | community/minitube/PKGBUILD | 24 | ||||
-rw-r--r-- | community/minitube/minitube.install | 11 |
2 files changed, 35 insertions, 0 deletions
diff --git a/community/minitube/PKGBUILD b/community/minitube/PKGBUILD new file mode 100644 index 000000000..4cdeafce2 --- /dev/null +++ b/community/minitube/PKGBUILD @@ -0,0 +1,24 @@ +# $Id: PKGBUILD 68258 2012-03-20 19:50:34Z andrea $ +# Maintainer: Andrea Scarpino <andrea@archlinux.org> + +pkgname=minitube +pkgver=1.7.1 +pkgrel=3 +pkgdesc="A native YouTube client in QT. Watch YouTube videos without Flash Player" +arch=('i686' 'x86_64') +url='http://flavio.tordini.org/minitube' +license=('GPL') +depends=('phonon') +install="${pkgname}.install" +source=("http://flavio.tordini.org/files/${pkgname}/${pkgname}-${pkgver}.tar.gz") +md5sums=('ce336b8cca8294f85d8e34b6a7828e38') + +build() { + cd "${srcdir}"/${pkgname} + qmake +} + +package() { + cd "${srcdir}"/${pkgname} + make install INSTALL_ROOT="${pkgdir}" +} diff --git a/community/minitube/minitube.install b/community/minitube/minitube.install new file mode 100644 index 000000000..1c0de2e4f --- /dev/null +++ b/community/minitube/minitube.install @@ -0,0 +1,11 @@ +post_install() { + xdg-icon-resource forceupdate --theme hicolor &> /dev/null +} + +post_upgrade() { + post_install +} + +post_remove() { + post_install +} |