summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 38b7d689b59d449a69e5fe9a5b94d1d13bc03800 (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
27
28
29
# Maintainer: James Smith <jslonescout AT icloud DOT com>
# Contributer: James Smith <jslonescout AT icloud DOT com>
pkgname=wmvolman
pkgver=2.0.1
pkgrel=1
pkgdesc="Dockapp to automount external disks with udisks2"
arch=('i686' 'x86_64' 'armv7h')
url="https://github.com/raorn/wmvolman"
license=('GPL2')
depends=('udisks2' 'libdockapp')
makedepends=('glib2' 'pkg-config')
source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
sha256sums=('625c2911fd296dd4ce021f7902e64162544d75bd948145fc015cca8546b728ad')

# Manually generate configure
build() {
	cd "$pkgname-$pkgver"
	aclocal
	autoheader
	automake --add-missing
	autoconf
	./configure --prefix=/usr
	make
}

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