blob: 47c8e235b2aafd5bbdca0277adba2f24d5718580 (
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
30
31
32
33
34
35
36
37
38
|
# Contributor: Alan Lacerda <alacerda@alpinelinux.org>
# Maintainer: Alan Lacerda <alacerda@alpinelinux.org>
pkgname=mate-media
pkgver=1.20.1
pkgrel=0
pkgdesc="Media tools for MATE"
url="https://github.com/mate-desktop/mate-media"
arch="all"
license="GPL-2.0"
makedepends="intltool gobject-introspection-dev gtk+3.0-dev
libcanberra-dev libunique-dev libmatemixer-dev mate-desktop-dev
dconf-dev libxml2-dev startup-notification-dev"
subpackages="$pkgname-doc $pkgname-lang"
source="http://pub.mate-desktop.org/releases/${pkgver%.*}/$pkgname-$pkgver.tar.xz"
builddir="$srcdir/$pkgname-$pkgver"
build() {
cd "$builddir"
./configure \
--build=$CBUILD \
--host=$CHOST \
--sysconfdir=/etc \
--enable-static=no \
--prefix=/usr
make
}
check() {
cd "$builddir"
make check
}
package() {
cd "$builddir"
make DESTDIR="${pkgdir}" install
}
sha512sums="2a7a0f8c7a931ece991702b3177daa8ba4ddec6b63c3bf05a03bd26711c7ebe92c279512614b92622c5bab51f2c442ac5d06ec5f720258dfeed5692cd2b33d34 mate-media-1.20.1.tar.xz"
|