diff options
author | Perberos <[email protected]> | 2011-11-07 16:46:58 -0300 |
---|---|---|
committer | Perberos <[email protected]> | 2011-11-07 16:46:58 -0300 |
commit | 528c1e5ff51e213936e800fc5a9a25da99c0bdf2 (patch) | |
tree | 77f8aa456b09367ba81f04d4562fc935f898a951 /distro/ubuntu/build | |
download | pluma-528c1e5ff51e213936e800fc5a9a25da99c0bdf2.tar.bz2 pluma-528c1e5ff51e213936e800fc5a9a25da99c0bdf2.tar.xz |
initial
Diffstat (limited to 'distro/ubuntu/build')
-rwxr-xr-x | distro/ubuntu/build | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/distro/ubuntu/build b/distro/ubuntu/build new file mode 100755 index 00000000..c5ad62ab --- /dev/null +++ b/distro/ubuntu/build @@ -0,0 +1,33 @@ +#!/bin/bash + +# fill it +pkgname=mate-text-editor +pkgver=2011.08.31 +pkgrel=1 +pkgdesc="An powerfull text editor for MATE" +depends=('mate-conf') + +# editar esta funcion! +build() { + cd $pkgsrc + # descomprimir + tar xvzf download + # entramos a la carpeta + cd ${pkgname} + + intltoolize --force --copy --automake || die "intltoolize failed" + + ./configure --prefix=/usr --sysconfdir=/etc \ + --localstatedir=/var --libexecdir=/usr/lib/ \ + --disable-scrollkeeper --enable-python || return 1 + make || return 1 + + make MATECONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 DESTDIR="${pkgdir}" install || return 1 + + 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 |