diff options
author | Nicolás Reynolds <apoyosis@correo.inta.gob.ar> | 2011-04-11 13:20:39 -0300 |
---|---|---|
committer | Nicolás Reynolds <apoyosis@correo.inta.gob.ar> | 2011-04-11 13:20:39 -0300 |
commit | fc8af58409b52408f3b713a7915a1a71ece1bf7c (patch) | |
tree | 05660e76422992a3380fe0c99d6aeb422033fcc2 | |
parent | 66113e99e72f34c917075aca54a7bc6fc2e9bb4f (diff) | |
parent | 0286f218c71bd9e3db2b735efa34ab3e6a456763 (diff) |
Merge branch 'master' of ssh://vparabola/srv/git/projects/abslibre
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | libre/libretools/PKGBUILD | 3 | ||||
-rw-r--r-- | libre/thunderbird-libre/rePKGBUILD | 33 |
3 files changed, 36 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore index f7fbb4a2e..a4f437311 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ src/ pkg/ *.pkg.tar.* *.src.tar.* +namcap.log
\ No newline at end of file diff --git a/libre/libretools/PKGBUILD b/libre/libretools/PKGBUILD index b424a9405..da9513300 100644 --- a/libre/libretools/PKGBUILD +++ b/libre/libretools/PKGBUILD @@ -50,9 +50,10 @@ package() { install -m755 ${_gitname}/libremakepkg ${pkgdir}/usr/bin/ install -m755 ${_gitname}/libremessages ${pkgdir}/usr/bin/ install -m755 ${_gitname}/librerelease ${pkgdir}/usr/bin/ + install -m755 ${_gitname}/librerepkg ${pkgdir}/usr/bin install -m755 ${_gitname}/librestage ${pkgdir}/usr/bin/ install -m755 ${_gitname}/mipsrelease ${pkgdir}/usr/bin install -m755 ${_gitname}/pkgbuild-check-nonfree ${pkgdir}/usr/bin/ install -m755 ${_gitname}/updateabslibre ${pkgdir}/usr/bin - + }
\ No newline at end of file diff --git a/libre/thunderbird-libre/rePKGBUILD b/libre/thunderbird-libre/rePKGBUILD new file mode 100644 index 000000000..ef2de693e --- /dev/null +++ b/libre/thunderbird-libre/rePKGBUILD @@ -0,0 +1,33 @@ +# Maintainer: Joshua Haase <hahj87@gmail.com> +_pkgbase=thunderbird +pkgname=thunderbird-libre +_pkgver=3.1 +pkgver=3.1.9 +_pkgrel=2 +pkgrel=$_pkgrel.1 +pkgdesc="Standalone Mail/News reader, with GNUZilla addons" +arch=('i686' 'x86_64') +license=('MPL' 'GPL') +url="http://www.mozilla.org/projects/thunderbird" +depends=('gtk2' 'gcc-libs' 'mozilla-common' 'nss' 'libxt' 'shared-mime-info' 'alsa-lib' 'dbus-glib' 'hunspell' 'sqlite3>=3.7.4' 'desktop-file-utils') +makedepends=() +optdepends=('libcanberra: for sound support') +replaces=('thunderbird') +conflicts=('thunderbird') +provides=("thunderbird=$pkgver") +install=thunderbird.install +source=(http://mirrors.kernel.org/archlinux/extra/os/$CARCH/$_pkgbase-$pkgver-$_pkgrel-$CARCH.pkg.tar.xz + gnuzilla-addons.patch) + +build() { + cd "${srcdir}/" + rm .{INSTALL,PKGINFO} $_pkgbase-$pkgver-$_pkgrel-$CARCH.pkg.tar.xz + pushd usr/lib/${_pkgbase}-${_pkgver}/defaults/pref/ >/dev/null + patch -Np0 -i "${srcdir}/gnuzilla-addons.patch" + popd >/dev/null + rm "${srcdir}/gnuzilla-addons.patch" +} + +package() { + cp -a ./* ${pkgdir} +} |