diff options
author | root <root@rshg054.dnsready.net> | 2013-08-13 01:33:19 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-08-13 01:33:19 -0700 |
commit | 7a65a910b77ad191d69881098c47f9b0c852d92e (patch) | |
tree | 9564e611af1442f8952a8cbddb3b0ad25ed71aab /community/qtfm | |
parent | 60da6abff6c9577a783d72865f11de7a585e912e (diff) |
Tue Aug 13 01:31:08 PDT 2013
Diffstat (limited to 'community/qtfm')
-rw-r--r-- | community/qtfm/PKGBUILD | 30 | ||||
-rw-r--r-- | community/qtfm/qtfm.changelog | 14 | ||||
-rw-r--r-- | community/qtfm/qtfm.install | 11 |
3 files changed, 55 insertions, 0 deletions
diff --git a/community/qtfm/PKGBUILD b/community/qtfm/PKGBUILD new file mode 100644 index 000000000..2b43d1c7e --- /dev/null +++ b/community/qtfm/PKGBUILD @@ -0,0 +1,30 @@ +# $Id: PKGBUILD 92818 2013-06-15 13:03:11Z jlichtblau $ +# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org> +# Contributor: Brad Fanella <bradfanella@archlinux.us> +# Contributor: Wittfella <wittfella@wittfella.com> + +pkgname=qtfm +pkgver=5.9 +pkgrel=1 +pkgdesc="A lightweight file manager" +arch=('i686' 'x86_64') +url="http://qt-apps.org/content/show.php/QtFM?content=158787" +license=('GPL') +depends=('file' 'qt5-base' 'desktop-file-utils') +install=$pkgname.install +changelog=$pkgname.changelog +source=(http://qt-apps.org/CONTENT/content-files/158787-qtfm.zip) +sha256sums=('07ffd61dd5d4aa7c16f1c544804517b621e3ef1a30eeda97c087219a3cb35128') + +build() { + cd "${srcdir}/$pkgname" + + qmake + make +} + +package() { + cd "${srcdir}/$pkgname" + + make INSTALL_ROOT="${pkgdir}" install +} diff --git a/community/qtfm/qtfm.changelog b/community/qtfm/qtfm.changelog new file mode 100644 index 000000000..2212da656 --- /dev/null +++ b/community/qtfm/qtfm.changelog @@ -0,0 +1,14 @@ +2013-06-15 Jaroslav Lichtblau <dragonlord@aur.archlinux.org> + * qtfm 5.9-1 + +2012-06-17 Jaroslav Lichtblau <dragonlord@aur.archlinux.org> + * qtfm 5.5-1 + +2012-03-18 Jaroslav Lichtblau <dragonlord@aur.archlinux.org> + * qtfm 5.4-1 + +2011-12-17 Jaroslav Lichtblau <dragonlord@aur.archlinux.org> + * qtfm 5.3-1 + +2011-12-08 Jaroslav Lichtblau <dragonlord@aur.archlinux.org> + * qtfm 5.2-1 diff --git a/community/qtfm/qtfm.install b/community/qtfm/qtfm.install new file mode 100644 index 000000000..2eaa60550 --- /dev/null +++ b/community/qtfm/qtfm.install @@ -0,0 +1,11 @@ +post_install() { + update-desktop-database -q +} + +post_upgrade() { + post_install $1 +} + +post_remove() { + post_install $1 +} |