blob: 0ab0fb9edeb6a7419cfb1ed04ae35e259f6a1386 (
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
# Maintainer: Fabio 'Lolix' Loli <fabio.loli@disroot.org> -> https://github.com/FabioLolix
# Contributor: Que Quotion <quequotion@bugmenot.com>
# Contributor: Allan McRae <allan@archlinux.org>
# Contributor: Jan de Groot <jgc@archlinux.org>
# Contributor: William Rea <sillywilly@gmail.com>
pkgname=brasero-git
pkgver=3.12.3.r29.g03844860
pkgrel=1
pkgdesc="CD/DVD mastering tool"
arch=(i686 x86_64)
url="https://wiki.gnome.org/Apps/Brasero"
license=(GPL)
groups=(gnome-extra)
depends=(gtk3 gst-plugins-good totem-plparser cdrkit cdrdao shared-mime-info libcanberra
dvd+rw-tools dconf libsm tracker3 libnotify gvfs)
makedepends=(gtk-doc yelp-tools gnome-common intltool libburn libisofs libnautilus-extension
gobject-introspection itstool docbook-xsl git)
optdepends=('libburn: alternative back-end'
'libisofs: libburn back-end'
'dvdauthor: video project'
'vcdimager: video project')
provides=(brasero)
conflicts=(brasero)
replaces=(nautilus-cd-burner)
options=(!emptydirs)
source=("git+https://gitlab.gnome.org/GNOME/brasero.git")
sha256sums=('SKIP')
pkgver() {
cd brasero
git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
}
prepare() {
cd brasero
NOCONFIGURE=1 ./autogen.sh
}
build() {
cd brasero
./configure \
--prefix=/usr \
--sysconfdir=/etc \
--localstatedir=/var \
--disable-caches \
--disable-schemas-compile \
--enable-compile-warnings=minimum
make
}
package() {
cd brasero
make DESTDIR=$pkgdir install
}
|