summaryrefslogtreecommitdiff
path: root/distro/ubuntu/build
blob: e9a1801219142ef55e4a2a923b56267b6376ce45 (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
#!/bin/bash

# fill it
pkgname=mate-applets
pkgver=2011.12.01
pkgrel=1
pkgdesc="MATE Applets"
#depends="gstreamer0.10-base-plugins, mate-panel, mate-character-map, libgtop, libmatenotify, cpufrequtils"
# editar esta funcion!
build() {
	cd $pkgsrc
	# descomprimir
	tar xvzf download
	# entramos a la carpeta
	cd ${pkgname}

	# Optional Features:
	#    --enable-pulseaudio     Enable PulseAudio support [default=auto]
	#    --enable-profiles       enable mate media profiles
	#    --enable-grecord        enable mate sound recorder
	#    --enable-gstprops       enable gstreamer properties
	#    --enable-gstmix         enable gstreamer mixer
	./configure --prefix=/usr --sysconfdir=/etc \
		--libexecdir=/usr/lib/${pkgname} \
		--localstatedir=/var --disable-static \
		--disable-schemas-install \
		--enable-pulseaudio \
		--disable-scrollkeeper \
		--enable-profiles --enable-grecord \
		--enable-gstprops --enable-gstmix || return 1

	# there is some pre-compiled files on the tar
	make || return 1

	make MATECONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 DESTDIR="${pkgdir}" install || return 1
	#rm -f ${pkgdir}/usr/lib/*.la # can be used options=(!libtools)

	install -m755 -d "${pkgdir}/usr/share/mateconf/schemas"
	mateconf-merge-schema "${pkgdir}/usr/share/mateconf/schemas/${pkgname}.schemas" --domain ${pkgname} ${pkgdir}/etc/mateconf/schemas/*.schemas || return 1
	rm -f ${pkgdir}/etc/mateconf/schemas/*.schemas
}

# esto incluye la parte que se repite en la mayoria de los builds
. /usr/share/mate-doc-utils/mate-debian.sh