diff options
Diffstat (limited to 'community/qtfm/PKGBUILD')
-rw-r--r-- | community/qtfm/PKGBUILD | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/community/qtfm/PKGBUILD b/community/qtfm/PKGBUILD new file mode 100644 index 000000000..20314f945 --- /dev/null +++ b/community/qtfm/PKGBUILD @@ -0,0 +1,27 @@ +# Maintainer: Brad Fanella <bradfanella@archlinux.us> +# Contributor: Wittfella <wittfella@wittfella.com> + +pkgname=qtfm +pkgver=4.8 +pkgrel=2 +pkgdesc="A lightweight file manager" +arch=('i686' 'x86_64') +url="http://www.qtfm.org" +license=('GPL') +depends=('qt') +source=(http://www.qtfm.org/$pkgname-$pkgver.tar.gz) +md5sums=('af419b8681f8031620259e0ac2957e46') + +build() { + cd "$startdir/src/$pkgname-$pkgver" + qmake + make +} + +package() { + cd "$startdir/src/$pkgname-$pkgver" + install -Dm 755 ${startdir}/src/$pkgname-$pkgver/qtfm ${startdir}/pkg/usr/bin/qtfm + install -Dm 644 ${startdir}/src/$pkgname-$pkgver/qtfm.desktop ${startdir}/pkg/usr/share/applications/qtfm.desktop + install -Dm 644 ${startdir}/src/$pkgname-$pkgver/images/qtfm.png ${startdir}/pkg/usr/share/pixmaps/qtfm.png +} + |