diff options
author | Steve Zesch <[email protected]> | 2012-05-28 17:54:36 -0400 |
---|---|---|
committer | Steve Zesch <[email protected]> | 2012-05-28 17:54:36 -0400 |
commit | d17a6f86ae9d9a30a155de7cc2ef138484501c37 (patch) | |
tree | 60324fd9b713e4f02b2912a6b5ca3611a3f60e8c /distro/ubuntu/build | |
parent | 817e619a525f15cee29af3bcbba186562116cf9e (diff) | |
download | mate-media-d17a6f86ae9d9a30a155de7cc2ef138484501c37.tar.bz2 mate-media-d17a6f86ae9d9a30a155de7cc2ef138484501c37.tar.xz |
Removed ubuntu folder.
Diffstat (limited to 'distro/ubuntu/build')
-rwxr-xr-x | distro/ubuntu/build | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/distro/ubuntu/build b/distro/ubuntu/build deleted file mode 100755 index a355a7e..0000000 --- a/distro/ubuntu/build +++ /dev/null @@ -1,44 +0,0 @@ -#!/bin/bash - -# fill it -pkgname=mate-applets -pkgver=1.1.0 -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 |