summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 399fb097f64932fe33eb9fd787f4cc9370cbba11 (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
url="https://github.com/IKRadulov/mate-window-applets"
license=('GPL3')

pkgname="mate-window-applets"
pkgver=1.3.2
pkgrel=1
arch=('i686' 'x86_64')
makedepends=('automake' 'autoconf' 'gettext' 'gobject-introspection')
depends=('python' 'gettext' 'gobject-introspection' 'mate-panel')
source=("https://github.com/IKRadulov/${pkgname}/archive/${pkgver}.tar.gz")
sha256sums=('061ac44c1dcd16b3feb663dd753c9557d046de98ae4edad80cad37aceff82af1')

build()
{
	cd "${srcdir}/${pkgname}-${pkgver}"

	NOCONFIGURE=1 ./autogen.sh
	./configure --prefix=/usr --disable-schemas-compile

	make

}

package_mate-window-applets() {
	cd "${srcdir}/${pkgname}-${pkgver}"
	make DESTDIR="${pkgdir}" install
	./install-icons.sh "${pkgdir}/usr/share" install
}