updating distro scripts

This commit is contained in:
Perberos
2011-11-12 05:44:22 -03:00
parent 6a04ee4e4e
commit 490f2d5bb5
5 changed files with 37 additions and 37 deletions

View File

@@ -2,31 +2,29 @@
# fill it
pkgname=mate-text-editor
pkgver=2011.08.31
pkgver=2011.11.12
pkgrel=1
pkgdesc="An powerfull text editor for MATE"
depends=('mate-conf')
depends=('mate-conf' 'python')
# editar esta funcion!
build() {
cd $pkgsrc
# descomprimir
tar xvzf download
# entramos a la carpeta
cd ${pkgname}
cd $pkgsrc
# descomprimir
tar xvzf download
# entramos a la carpeta
cd ${pkgname}
intltoolize --force --copy --automake || die "intltoolize failed"
./autogen.sh --prefix=/usr --sysconfdir=/etc \
--localstatedir=/var --libexecdir=/usr/lib/ \
--disable-scrollkeeper --enable-python || return 1
make || return 1
./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
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
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

View File

@@ -2,7 +2,10 @@
pkgname=mate-text-editor
/usr/sbin/mateconfpkg --install ${pkgname}
if [ -f /usr/sbin/mateconfpkg ]; then
/usr/sbin/mateconfpkg --install ${pkgname}
fi
gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
exit 0

View File

@@ -2,5 +2,7 @@
pkgname=mate-text-editor
/usr/sbin/mateconfpkg --uninstall ${pkgname}
if [ -f /usr/sbin/mateconfpkg ]; then
/usr/sbin/mateconfpkg --uninstall ${pkgname}
fi

View File

@@ -2,6 +2,8 @@
pkgname=mate-text-editor
/usr/sbin/mateconfpkg --uninstall ${pkgname}
if [ -f /usr/sbin/mateconfpkg ]; then
/usr/sbin/mateconfpkg --uninstall ${pkgname}
fi
exit 0