summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: df7b50eb9c9cfe6d4220952def5c1b3aca473441 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# Maintainer: Jason Graves <j.graves@collaboradev.com>

pkgname=xfce4-finder
pkgver=1.0.3
pkgrel=1
pkgdesc="Smart and intuitive application finder, complete with theme and customization support."
arch=('any')
url="https://github.com/godlikemouse/xfce4-finder/archive/$pkgver.tar.gz"
license=('MIT')
groups=('xfce4')
depends=('glib2' 'gtkmm3' 'garcon' 'xfconf' 'libxfce4util' 'libxfce4ui')
makedepends=('automake' 'autoconf' 'xfce4-dev-tools' 'git')
source=("git+https://github.com/godlikemouse/$pkgname.git")
md5sums=('SKIP')

build() {
	cd "$srcdir/$pkgname"
	./autogen.sh
	./configure
	make
}

package() {
	cd "$srcdir/$pkgname"
	make DESTDIR="$pkgdir/" install
}